/* Contenedor Principal */
.lrp-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.lrp-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

.lrp-header h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.lrp-header p {
    color: #7f8c8d;
    font-size: 0.9em;
}

/* Secciones */
.lrp-section {
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #3498db;
}

.lrp-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #34495e;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

/* Grid System Simple */
.lrp-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 15px;
}

.lrp-col {
    flex: 1;
    padding: 0 10px;
    min-width: 250px;
}

.lrp-col-full {
    flex: 100%;
    padding: 0 10px;
}

/* Inputs */
.lrp-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9em;
    color: #2c3e50;
}

.lrp-container input[type="text"],
.lrp-container input[type="email"],
.lrp-container input[type="tel"],
.lrp-container select,
.lrp-container textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.lrp-container input:focus,
.lrp-container select:focus,
.lrp-container textarea:focus {
    border-color: #3498db;
    outline: none;
}

/* Radio Groups */
.lrp-radio-group {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}

.lrp-radio-group label {
    font-weight: normal;
    cursor: pointer;
}

/* Footer & Button */
.lrp-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

#lrp-submit-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

#lrp-submit-btn:hover {
    background-color: #c0392b;
}

#lrp-submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

/* Mensajes */
#lrp-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
    text-align: center;
}

.lrp-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.lrp-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 600px) {
    .lrp-col {
        flex: 100%;
        margin-bottom: 15px;
    }
    
    .lrp-container {
        padding: 15px;
    }
}
