/* /includes/css/auth.css */
/* (Estilos para /login.php, /register.php, /verify.php, etc.) */

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}
.auth-box {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 30px 40px;
    width: 100%;
    max-width: 450px;
    text-align: center;
}
.auth-box h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
}
.auth-box p {
    margin-bottom: 25px;
    color: #555;
}
.form-group {
    margin-bottom: 15px;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box; /* Importante */
}
.form-options {
    text-align: right;
    margin-bottom: 20px;
}
.form-options a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
}
.btn-primary-full, .btn-secondary-full, .btn-google-full {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 15px;
    box-sizing: border-box;
    transition: opacity 0.2s;
}
.btn-primary-full:hover, .btn-secondary-full:hover, .btn-google-full:hover {
    opacity: 0.9;
}
.btn-primary-full {
    background-color: var(--primary-color);
    color: white;
}
.btn-secondary-full {
    background-color: var(--secondary-color);
    color: white;
}
.btn-google-full {
    background-color: #fff;
    color: #444;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-google-full img {
    width: 20px;
    margin-right: 10px;
}
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #aaa;
    margin: 20px 0;
}
.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}
.auth-divider span { padding: 0 10px; }
.auth-switch { margin-top: 20px; }
.auth-switch p { margin: 0; }
.auth-switch a { color: var(--primary-color); font-weight: 600; }

.choice-box {
    display: block;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    margin-bottom: 15px;
    transition: all 0.2s ease;
}
.choice-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.choice-box h3 { margin-top: 0; }
.choice-box span { display: inline-block; margin-top: 10px; }