/* Login Page Styles */

:root {
    --google-blue: #1a73e8;
    --google-gray-bg: #f8f9fa;
    --text-main: #1f1f1f;
    --text-secondary: #444746;
    --border-color: #c4c7c5;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--google-gray-bg);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: var(--text-main);
}

.login-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 400px;
    border: 1px solid #e3e3e3;
}

.header-section {
    text-align: center;
    margin-bottom: 32px;
}

.logo {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-main);
    text-decoration: none;
    display: inline-block;
}

.logo span {
    color: var(--google-blue);
}

.subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--google-blue);
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.error-message {
    background-color: #fce8e6;
    color: #d93025;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.error-message i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.btn-submit {
    width: 100%;
    background-color: var(--google-blue);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 24px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #1557b0;
}

.footer-links {
    margin-top: 24px;
    text-align: center;
}

.footer-links a {
    color: var(--google-blue);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Efecto de carga en el botón */
.btn-submit.loading {
    background-color: #a8c7fa;
    cursor: not-allowed;
}