
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #0a0a0a;
    scroll-behavior: smooth;
    overflow: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background: radial-gradient(circle at bottom right, #4eecd0 -50%, #0a0a0a 70%);
    height: 100vh;
    margin: 0;
    background-attachment: fixed;
    overflow: hidden;
    overscroll-behavior: none;
}

.iniciarSesion {
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding-top: 20px;
}

.hero-logo {
    margin: -70px auto 0 auto;
    text-align: center;
}

.hero-logo img {
    width: 550px;
    max-width: 90%;
    height: auto;
    object-fit: contain;
    margin-bottom: -100px;
}


.contenedor {
    max-width: 650px;
    width: 90%;
    margin: 0 auto;
    padding: 30px 24px;
    border-radius: 10px;
}

.contacto-grid {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    display: block;
}

.form-contacto {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}


.mostrarContrasena {
    width: 15px !important;
    padding: 0 !important;
    align-self: flex-start;
    margin-top: -5px;
    margin-left: 10px;
    cursor: pointer;
}

.label {
    align-self: flex-start;
    margin-top: -32px;
    margin-left: 35px;
    font-size: 13px;
    color: #ffffff;
    cursor: pointer;
}


.form-contacto input,
.form-contacto textarea {
    width: 100%;
    padding: 14px 18px;
    background: #111;
    border: 1px solid #4eecd0;
    border-radius: 10px;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}


.btn-enviarMensaje {
    display: inline-block;
    text-align: center;
    padding: 14px 40px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px auto;
    align-self: center;
}

.btn-enviarMensaje:hover {
    background: #4eecd0;
    color: #0a0a0a;
    border-color: #4eecd0;
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(78, 236, 208, 0.25);
}



@media screen and (max-width: 768px) {

    .hero-logo {
        margin-top: 40px;
    }
    .hero-logo img {
        width: 400px;
        margin-bottom: -40px;
    }

    .btn-enviarMensaje {
        width: 100%;
        padding: 16px 20px;
    }

    .label {
        font-size: 12px;
        margin-top: -30px;
    }
}

