 body {
            font-family: 'Inter', sans-serif;
        }
        .form-container {
            max-width: 400px;
            margin: 50px auto;
            padding: 40px;
            background-color: #ffffff;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid #e5e7eb;
        }
        .formTextBox {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            margin-bottom: 16px;
            font-size: 16px;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .formTextBox:focus {
            outline: none;
            border-color: #fb923c;
            box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.3);
        }
        .btn {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .btn:active {
            transform: scale(0.98);
        }
        .orangeBtn {
            background-color: #f97316;
            color: white;
        }
        .orangeBtn:hover {
            background-color: #ea580c;
        }
        .greyBtn {
             background-color: #e5e7eb;
             color: #374151;
        }
        .greyBtn:hover {
            background-color: #d1d5db;
        }
        .social-btn {
            background-color: #fff;
            color: #374151;
            border: 1px solid #d1d5db;
        }
        .social-btn:hover {
            background-color: #f9fafb;
        }
        .hidden {
            display: none;
        }
        hr {
            border: none;
            border-top: 1px solid #e5e7eb;
            margin: 24px 0;
        }
        /* Custom Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            display: none; /* Initially hidden */
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }
        .modal-content {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            max-width: 450px;
            width: 90%;
            text-align: center;
        }