/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* BODY */
body {
    font-family: Arial, sans-serif;
    background: #dfe3e6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* CONTENEDOR */
.auth-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* TARJETA */
.auth-card {
    background: #f5f5f5;
    padding: 40px 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 420px;
    text-align: center;
}

/* TITULO */
.auth-card h2 {
    margin-bottom: 25px;
}

/* FORM */
.auth-card form {
    width: 100%;
}

/* LABELS */
.auth-card label {
    display: block;
    text-align: left;
    margin-bottom: 6px;
    font-size: 14px;
}

/* 🔥 BASE UNIFICADA PARA SIMETRÍA */
.auth-card input,
.auth-card button,
.google-btn {
    width: 100%;
    height: 44px; /* 🔥 MISMA ALTURA PARA TODOS */
    padding: 0 12px; /* evita desbalance vertical */
    border-radius: 6px;
    font-size: 14px;
}

/* INPUTS */
.auth-card input {
    border: 1px solid #bfc5c9;
    margin-bottom: 18px;
}

/* BOTÓN LOGIN */
.auth-card button {
    background: #0b3d4a;
    color: white;
    border: 1px solid #0b3d4a;
    font-weight: bold;
    cursor: pointer;
    margin-top: 5px;
}

.auth-card button:hover {
    background: #092f39;
}

/* DIVIDER */
.divider {
    margin: 20px 0;
    color: #666;
    font-size: 14px;
}

/* BOTÓN GOOGLE */
.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #c7c7c7;
    background: white;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* ICONO GOOGLE */
.google-btn img {
    width: 18px;
    height: 18px;
}

/* HOVER GOOGLE */
.google-btn:hover {
    background: #f1f1f1;
}

/* TEXTO FINAL */
.auth-card p {
    margin-top: 18px;
    font-size: 14px;
}

.auth-card a {
    font-weight: bold;
    color: #0b3d4a;
}