/* LOGIN PAGE STYLES */
        .login-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
            background: radial-gradient(circle at top, #3a3a3a 0%, #1f1f1f 55%, #141414 100%);
        }



        .login-box {
            width: 100%;
            max-width: 400px;
            padding: 40px;
            background: #3a3a3a;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
            animation: slideIn 0.4s ease-out;
        }

        html.safari-legacy .login-box {
            animation: none;
            box-shadow: none;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        h2 {
            margin-bottom: 30px;
            color: #e0e0e0;
            text-align: center;
            font-size: 28px;
            font-weight: 600;
        }

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

        label {
            display: block;
            margin-bottom: 8px;
            color: #b0b0b0;
            font-size: 14px;
            font-weight: 500;
        }

        #clientEmail {
            color: white !important;
            font-size: 16px !important;
            display: inline !important;
            visibility: visible !important;
        }

        input,
        textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #555;
            border-radius: 10px;
            font-size: 15px;
            transition: all 0.3s ease;
            background-color: #2a2a2a;
            color: #e0e0e0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
                "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
        }

        .password-field input {
            padding-right: 44px;
        }

        textarea {
            resize: vertical;
            min-height: 80px;
        }

        input:focus,
        textarea:focus {
            outline: none;
            border-color: #667eea;
            background-color: #2f2f2f;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
        }

        .btn {
            width: 100%;
            padding: 14px;
            background-color: #667eea;
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            margin-top: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
        }

        .btn:hover {
            background-color: #5568d3;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        .btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .btn:disabled {
            background-color: #a0aec0;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .btn-secondary {
            background-color: #4a5568;
            padding: 8px 16px;
            font-size: 14px;
            width: auto;
            margin: 0;
        }

        .btn-secondary:hover {
            background-color: #2d3748;
        }

        .btn-small {
            padding: 6px 12px;
            font-size: 13px;
            width: auto;
            margin: 0 5px 0 0;
        }

        .message {
            padding: 12px 16px;
            margin-top: 20px;
            border-radius: 10px;
            display: none;
            font-size: 14px;
            font-weight: 500;
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .message.success {
            background-color: rgba(74, 222, 128, 0.15);
            color: #4ade80;
            border: 2px solid rgba(74, 222, 128, 0.35);
        }

        .message.error {
            background-color: rgba(239, 68, 68, 0.15);
            color: #f87171;
            border: 2px solid rgba(239, 68, 68, 0.35);
        }

        .loading-spinner {
            display: inline-block;
            width: 14px;
            height: 14px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            border-top-color: transparent;
            animation: spin 0.8s linear infinite;
            margin-left: 8px;
            vertical-align: middle;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
