/* Auth styles */
.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background-color: var(--sidebar-bg);
}

.auth-card {
    background-color: var(--bg-color);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 420px;
    padding: 32px;
}

.auth-header {
    text-align: center;
    margin-bottom: 24px;
}

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

.auth-header .logo img {
    width: 40px;
    height: 40px;
    margin-right: 8px;
}

.auth-header .logo span {
    font-size: 24px;
    font-weight: 500;
    color: #1a73e8;
}

.auth-header h1 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
}

.auth-header p {
    font-size: 14px;
    color: #5f6368;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
}

.alert-error {
    background-color: #fce8e6;
    color: #d93025;
    border: 1px solid #f5c2c7;
}

.alert-success {
    background-color: #e6f4ea;
    color: #137333;
    border: 1px solid #c3e6cb;
}

.auth-form {
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #202124;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 14px;
    color: #202124;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: #1a73e8;
    outline: none;
}

.form-group small {
    display: block;
    font-size: 12px;
    color: #5f6368;
    margin-top: 4px;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-right: 8px;
}

.remember-me label {
    font-size: 14px;
    color: #5f6368;
}

.forgot-password {
    font-size: 14px;
    color: #1a73e8;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-block {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}

.auth-footer {
    text-align: center;
    font-size: 14px;
    color: #5f6368;
}

.auth-footer a {
    color: #1a73e8;
    text-decoration: none;
}

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

@media (max-width: 480px) {
    .auth-card {
        padding: 24px;
    }
}
