@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Estilos para la página de contacto */
.contact-hero {
    height: 60vh;
    background: linear-gradient(rgba(62, 86, 144, 0.7), rgba(62, 86, 144, 0.7)),
                url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;

}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(62, 86, 144, 0.3), rgba(187, 215, 235, 0.3));
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.contact-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-hero p {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    font-family: 'Poppins', sans-serif;
}

.contact-register-section {
    display: flex;
    align-items: stretch;
    padding: 0;
    margin: 0;
    background: #f5f5f5;
    font-family: 'Poppins', sans-serif;
}

.contact-register-container {
    display: flex;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
}

.contact-register-info {
    background: #3E5690;
    padding: 2rem 4rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 50%;
}

.contact-register-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(187, 215, 235, 0.1) 0%, rgba(187, 215, 235, 0) 100%);
}

.contact-register-info h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    position: relative;
    z-index: 1;
    line-height: 1.2;
    color: #BBD7EB;
}

.contact-register-info p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.contact-register-rocket {
    width: 250px;
    height: 250px;
    margin: 0rem auto;
    position: relative;
    z-index: 1;
    animation: contact-register-float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes contact-register-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.contact-register-rocket{
    display: none;
}

.contact-register-rocket i {
    color: #BBD7EB;
    transition: transform 0.3s ease;
}

.contact-register-rocket:hover i {
    transform: scale(1.1);
}

.contact-register-form-container {
    background: #BBD7EB;
    padding: 2rem 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: 50%;
}

.contact-register-form {
    position: relative;
    z-index: 1;
}

.contact-register-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.contact-register-header a {
    color: #3E5690;
    text-decoration: none;
    margin-left: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.contact-register-header a:hover {
    opacity: 1;
}

.contact-register-group {
    margin-bottom: 2rem;
    position: relative;
}

.contact-register-group label {
    display: none;
}

.contact-register-group input {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(62, 86, 144, 0.2);
    color: #3E5690;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-register-group input::placeholder {
    color: black;
    font-weight: 300;
}

.contact-register-group input:focus {
    outline: none;
    border-bottom-color: #3E5690;
}

.contact-register-group input:focus::placeholder {
    color: rgba(62, 86, 144, 0.5);
}

.contact-register-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    color: black;
    font-size: 0.9rem;
    font-weight: 300;
}

.contact-register-checkbox input[type="checkbox"] {
    margin-right: 0.5rem;
}

.contact-register-checkbox a {
    color: #3E5690;
    text-decoration: none;
    margin-left: 0.3rem;
    font-weight: 500;
}

.contact-register-submit {
    background: #3E5690;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.contact-register-submit:hover {
    background: #2a3b5f;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-register-info,
    .contact-register-form-container {
        padding: 4rem 3rem;
    }

    .contact-register-info h2 {
        font-size: 3rem;
    }

    .contact-register-rocket {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .contact-register-container {
        flex-direction: column;
    }

    .contact-register-info,
    .contact-register-form-container {
        width: 100%;
        padding: 3rem 2rem;
    }

    .contact-register-info {
        text-align: center;
    }

    .contact-register-info h2 {
        font-size: 2.5rem;
    }

    .contact-register-info p {
        font-size: 1.2rem;
    }

    .contact-register-rocket {
        width: 150px;
        height: 150px;
        margin: 1rem auto;
    }

    .contact-hero {
        height: 50vh;
    }

    .contact-hero h1 {
        font-size: 3rem;
    }

    .contact-hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {


    .contact-register-info,
    .contact-register-form-container {
        padding: 2rem 1.5rem;
    }

    .contact-register-info h2 {
        font-size: 2rem;
    }

    .contact-register-info p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-hero {
        height: 40vh;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }
} 