/* Layout base */
.auth-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Variante auth */
.auth-main {
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
    padding: 0;
}



/* Login / Auth styles */
.auth-bg {
    background: linear-gradient(
        to bottom,
        #ffffff 35%,
        #cfe9f3 70%,
        #9fd0e4 100%
    );
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    background: #8fcde6;
    border-radius: 18px;
    padding: 32px 28px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.auth-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.auth-logo img {
    height: 48px;
}

.auth-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.auth-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 24px;
}



/* Inputs */
.auth-field {
    background: #ffffff;
    border-radius: 999px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    border: 2px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-field i {
    color: #0f2a44;
    font-size: 16px;
}

.auth-field input {
    border: none;
    outline: none;
    margin-left: 10px;
    width: 100%;
    font-size: 14px;
}

.auth-field:focus-within {
    border-color: #0f2a44;
    box-shadow: 0 0 0 3px rgba(15, 42, 68, 0.15);
}



/* Botón */
.auth-btn {
    background-color: #0f2a44;
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 10px;
    transition: background-color 0.2s, transform 0.15s;
}

.auth-btn:hover {
    background-color: #0b2136;
    transform: translateY(-1px);
}



/* Links */
.auth-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 14px;
    color: #0f2a44;
    text-decoration: none;
}

.auth-link:hover {
    text-decoration: underline;
}



/* Mensajes */
.auth-error {
    background: #f8d7da;
    color: #842029;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 12px;
}




