        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Circular, "Helvetica Neue", Arial, Helvetica, sans-serif;
            background-color: #f5f9ff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 20px 20px 40px 20px;
            padding-top: 40px;
        }

        .logo {
            margin-bottom: 30px;
        }

        .logo img {
            height: 70px;
            width: auto;
        }

        .login-container {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            width: 100%;
            max-width: 440px;
        }

        .login-container h2 {
            font-size: 18px;
            margin-bottom: 30px;
            color: #333;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            color: #666;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            font-family: Circular, "Helvetica Neue", Arial, Helvetica, sans-serif;
            transition: border-color 0.2s;
        }

        .form-group input:focus {
            outline: none;
            border-color: #0069bf;
        }

        .password-wrapper {
            position: relative;
        }

        .show-password {
            position: absolute;
            right: 12px;
            top: 37px;
            color: #0069bf;
            font-size: 13px;
            cursor: pointer;
            text-decoration: none;
            font-weight: 600;
        }

        .show-password:hover {
            text-decoration: underline;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 25px;
            font-size: 13px;
        }

        .checkbox-group input[type="checkbox"] {
            width: 16px;
            height: 16px;
            cursor: pointer;
        }

        .checkbox-group label {
            margin: 0;
            cursor: pointer;
            color: #666;
        }

        .reset-password {
            color: #0069bf;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
        }

        .reset-password:hover {
            text-decoration: underline;
        }

        .login-btn {
            width: 100%;
            padding: 12px;
            background-color: #79cc6e;
            color: black;
            border: none;
            border-radius: 4px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            font-family: Circular, "Helvetica Neue", Arial, Helvetica, sans-serif;
            transition: background-color 0.2s;
        }

        .login-btn:hover {
            background-color: #6bb85d;
        }

        .login-btn.loading {
            opacity: 0.8;
            cursor: not-allowed;
        }

        .btn-spinner {
            display: none;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(0, 0, 0, 0.2);
            border-top: 2px solid #000;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin-right: 8px;
            vertical-align: middle;
        }

        .login-btn.loading .btn-spinner {
            display: inline-block;
        }

        .login-btn.loading .btn-text {
            display: none;
        }

        .divider {
            margin: 30px 0;
            text-align: center;
            color: #999;
            font-size: 13px;
            position: relative;
        }

        .google-login-wrapper {
            margin-top: 25px;
            display: flex;
            justify-content: center;
        }

        .google-login {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 20px;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            color: #666;
            background: white;
            transition: background-color 0.2s;
            text-decoration: none;
            font-weight: 500;
            white-space: nowrap;
        }

        .google-login:hover {
            background-color: #f9f9f9;
        }

        .google-login img {
            width: 18px;
            height: 18px;
        }

        footer {
            background-color: #e3e6eb;
            padding: 80px 20px 40px 20px;
            text-align: center;
            color: #666;
            font-size: 13px;
            position: relative;
        }

        .footer-icon {
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .footer-icon img {
            width: 120px;
            height: 120px;
            display: block;
        }

        .footer-title {
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .footer-contact {
            margin-bottom: 10px;
            color: #666;
        }

        .footer-contact a {
            color: #0069bf;
            text-decoration: none;
        }

        .footer-contact a:hover {
            text-decoration: underline;
        }

        .footer-signup {
            margin: 15px 0;
            color: #666;
        }

        .footer-signup a {
            color: #0069bf;
            text-decoration: none;
            font-weight: 600;
        }

        .footer-signup a:hover {
            text-decoration: underline;
        }

        .footer-links {
            margin-top: 15px;
            color: #666;
        }

        .footer-links a {
            color: #0069bf;
            text-decoration: none;
            margin: 0 5px;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

        /* Notification Styles */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: white;
            padding: 16px 20px;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            animation: slideIn 0.3s ease-out;
            font-size: 14px;
            color: #333;
            max-width: 300px;
        }

        @keyframes slideIn {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideOut {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(400px);
                opacity: 0;
            }
        }

        .notification.removing {
            animation: slideOut 0.3s ease-out;
        }

        .notification.success {
            border-left: 4px solid #79cc6e;
        }

        .notification.info {
            border-left: 4px solid #0069bf;
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.95);
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        .loading-screen.active {
            display: flex;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 4px solid #e0e0e0;
            border-top: 4px solid #79cc6e;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 20px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .loading-text {
            font-size: 16px;
            color: #333;
            font-weight: 500;
        }