/* Estilos base heredados */
@import url('../css/styles.css');

/* Estilos específicos para la página de registro */
.registration-main {
    display: flex;
    padding: 2rem;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.requirements, .registration-form {
    flex: 1;
    background-color: rgb(43, 255, 79);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.requirements h2, .registration-form h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requirements ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.requirements li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.note {
    background-color: #4ca3dd;
    padding: 1rem;
    border-left: 4px solid var(--secondary-color);
    margin-top: 1.5rem;
}

.note p {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #40c934;
    border-radius: 5px;
    font-size: 1rem;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox input {
    width: auto;
}

.checkbox label {
    font-weight: normal;
    margin-bottom: 0;
}

.submit-btn {
    background-color: var(--primary-color);
    color: rgb(255, 1, 1);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #27ae60;
}

/* Animaciones específicas */
.slide-in-from-left {
    animation: slideInFromLeft 1s ease-out;
}

.slide-in-from-right {
    animation: slideInFromRight 1s ease-out;
}

@keyframes slideInFromLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .registration-main {
        flex-direction: column;
    }
}