/* Login Page Specific Styles */

.login-container {
    max-width: 400px;
}

.login-header h1 {
    font-size: 32px;
    margin: 0;
}

.login-header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.login-header-icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 28px;
    font-weight: bold;
}

.login-header-logo-img {
    height: 48px;
    width: auto;
}

.login-header p {
    margin-top: 15px;
}

.login-form {
    /* Inherits from .auth-form */
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
}

.checkbox-group label {
    color: var(--warm-500);
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}

.btn-login {
    /* Inherits from .btn-primary */
}