:root {
    --ya-azul: #0099cc;
    --ya-naranja: #ff9900;
    --ya-azul-claro: #00ccff;
    --ya-marino: #0a4a6b;
    --ya-gris: #cccccc;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background: #f5f6f8;
}

h1,
h2,
.nunito {
    font-family: 'Nunito', sans-serif;
}

.eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ya-azul);
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background: #f5f6f8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.login-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    background: #f5f6f8;
}

.login-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 74, 107, .1);
    padding: 2.5rem 2.75rem;
    width: 100%;
    max-width: 460px;
}

/* Logo centrado */
.login-logo {
    text-align: center;
    margin-bottom: .5rem;
}

.login-logo-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Nunito', sans-serif;
    line-height: 1;
}

.ll-t {
    color: #0a4a6b;
}

.ll-Y {
    color: #ff9900;
}

.ll-a {
    color: #0099cc;
}

.login-logo svg {
    display: block;
    margin: .2rem auto 0;
}

.login-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0a4a6b;
    font-family: 'Nunito', sans-serif;
    text-align: center;
    margin-bottom: .25rem;
}

.login-sub {
    font-size: .78rem;
    color: #7aaabb;
    text-align: center;
    margin-bottom: 1.75rem;
}

/* Botón Google */
.login-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    width: 100%;
    padding: 11px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: .82rem;
    font-weight: 700;
    color: #0a4a6b;
    font-family: 'Nunito Sans', sans-serif;
    margin-bottom: 1.25rem;
    transition: border-color .15s, box-shadow .15s;
}

.login-google:hover {
    border-color: #0099cc;
    box-shadow: 0 0 0 2px rgba(0, 153, 204, .08);
}

.login-google-icon {
    width: 20px;
    height: 20px;
}

/* Separador */
.login-sep {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
}

.login-sep-line {
    flex: 1;
    height: 1px;
    background: #e8eef4;
}

.login-sep-txt {
    font-size: .65rem;
    font-weight: 700;
    color: #aabccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

/* Campos */
.login-field {
    margin-bottom: .75rem;
}

.login-field-inner {
    position: relative;
}

.login-inp {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e0e8f0;
    border-radius: 8px;
    font-size: .82rem;
    color: #0a4a6b;
    background: #fafafa;
    outline: none;
    font-family: 'Nunito Sans', sans-serif;
    transition: border-color .15s;
}

.login-inp:focus {
    border-color: #0099cc;
    background: #fff;
}

.login-inp::placeholder {
    color: #bbb;
}

.login-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: .8rem;
    cursor: pointer;
    color: #aaa;
}

/* Mostrar contraseña */
.login-mostrar {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: 1.25rem;
    font-size: .7rem;
    color: #7aaabb;
    cursor: pointer;
    user-select: none;
}

.login-mostrar input {
    accent-color: #0099cc;
}

/* Botón principal */
.login-btn2 {
    width: 100%;
    padding: 13px;
    border-radius: 100px;
    background: #0099cc;
    color: #fff;
    font-size: .9rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    letter-spacing: .3px;
    transition: background .15s;
    margin-bottom: 1.1rem;
}

.login-btn:hover {
    background: #0088bb;
}

/* Links */
.login-links {
    text-align: center;
}

.login-link-txt {
    font-size: .72rem;
    color: #7aaabb;
    margin-bottom: .35rem;
}

.login-link-txt a {
    color: #ff9900;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.login-link-txt a:hover {
    text-decoration: underline;
}

.login-forgot {
    font-size: .72rem;
    color: #0099cc;
    cursor: pointer;
    font-weight: 600;
}

.login-forgot:hover {
    text-decoration: underline;
}