body, html {
    height: 100%;
    margin: 0;
    background-color: var(--theme-bg-primary, #f7f9fc);
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-card {
    background: var(--theme-surface-1, #ffffff);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--theme-shadow, 0 4px 20px rgba(0, 0, 0, 0.1));
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.login-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.login-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--theme-text-primary, #333333);
}

.login-subtitle {
    font-size: 14px;
    color: var(--theme-text-secondary, #555555);
    margin-bottom: 20px;
    line-height: 1.6;
}

.login-label {
    font-size: 14px;
    color: var(--theme-text-secondary, #555555);
    margin-bottom: 5px;
}

.login-input {
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid var(--theme-border-color, #ced4da);
    margin-bottom: 15px;
    background-color: var(--theme-input-bg, #ffffff);
    color: var(--theme-text-primary, #333333);
}

.login-input:focus {
    border-color: var(--theme-primary, #80bdff);
    box-shadow: 0 0 0 0.2rem var(--theme-primary-alpha, rgba(0, 123, 255, 0.25));
}

.login-button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    background-color: var(--theme-primary, #007bff);
    border: none;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: var(--theme-primary-dark, #0056b3);
}

.text-danger {
    font-size: 12px;
    color: var(--theme-danger, #e74c3c);
}

.btn-link {
    color: var(--theme-primary, #007bff);
}

.btn-link:hover {
    color: var(--theme-primary-dark, #0056b3);
    text-decoration: none;
}

.mt-3 {
    margin-top: 1rem;
}

.forgot-password {
    font-size: 14px;
    color: var(--theme-primary, #007bff);
}

.forgot-password:hover {
    color: var(--theme-primary-dark, #0056b3);
    text-decoration: none;
}

.form-check-input {
    margin-top: 0.2rem;
}

.form-check-label {
    margin-bottom: 0;
}

/* Divider styles */
.divider-container {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background-color: var(--theme-border-color, #e0e0e0);
    border: none;
    margin: 0;
}

.divider-text {
    padding: 0 15px;
    color: var(--theme-text-tertiary, #999999);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Google button styles */
.btn-google {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid var(--theme-border-color, #dadce0);
    background-color: var(--theme-surface-1, #ffffff);
    color: var(--theme-text-primary, #3c4043);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}

.btn-google:hover {
    background-color: var(--theme-surface-2, #f8f9fa);
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.30), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.google-icon {
    width: 20px;
    height: 20px;
}