        .login-section {
            padding: 100px 0;
            background: #f8f9fa;
            min-height: calc(100vh - 200px);
        }

        .login-card {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
            padding: 50px;
        }

        .login-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .login-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 15px;
        }

        .login-header p {
            color: #6b7280;
            font-size: 16px;
        }

        .alert-modern {
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 25px;
            font-size: 14px;
        }

        .alert-modern.alert-danger {
            background: #fee2e2;
            color: #991b1b;
            border-left: 4px solid #ef4444;
        }

        .alert-modern.alert-success {
            background: #d1fae5;
            color: #065f46;
            border-left: 4px solid #10b981;
        }

        .login-footer {
            text-align: center;
            margin-top: 35px;
            padding-top: 35px;
            border-top: 1px solid #e5e7eb;
        }

        .login-footer p {
            color: #6b7280;
            font-size: 15px;
            margin: 0;
        }

        .login-footer a {
            color: var(--themeht-primary-color);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }

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

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

        .form-group label {
            display: block;
            font-weight: 600;
            color: #374151;
            margin-bottom: 10px;
            font-size: 15px;
        }

        .forgot-link {
            text-align: right;
            margin-top: -10px;
            margin-bottom: 20px;
        }

        .forgot-link a {
            color: var(--themeht-primary-color);
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
        }

        .forgot-link a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .login-card {
                padding: 30px;
            }

            .login-header h2 {
                font-size: 28px;
            }
        }