body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            background: linear-gradient(135deg, #f8f9fa, #ffe4b5);
            color: #333;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
       
        .hero {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 50px 20px;
            animation: fadeIn 2s ease-in-out;
            flex: 1;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #343a40;
        }
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 20px;
        }
        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: #ffd700;
            color: #343a40;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            text-decoration: none;
            cursor: pointer;
            transition: background 0.3s ease-in-out;
        }
        .cta-button:hover {
            background: #ffca00;
        }
        footer {
            background: #343a40;
            color: #fff;
            text-align: center;
            padding: 10px;
            position: relative;
            bottom: 0;
            width: 100%;
            box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
        }

        /* Modal Styles */
        .modal {
            display: none; /* Hidden by default */
            position: fixed;
            z-index: 1; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto; /* Enable scroll if needed */
            background-color: rgba(0, 0, 0, 0.6); /* Dark background with opacity */
            padding-top: 60px;
            transition: all 0.3s ease-in-out;
        }

        .modal-content {
            background-color: #fff;
            margin: 5% auto;
            padding: 40px;
            border-radius: 8px;
            width: 90%;
            max-width: 450px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease-in-out;
        }

        .modal-content h2 {
            color: #343a40;
            font-size: 1.5rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .modal form input {
            padding: 15px;
            margin: 10px 0;
            width: 100%;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            box-sizing: border-box;
        }

        .modal form button {
            padding: 15px;
            background: #ffd700;
            color: #343a40;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
            width: 100%;
        }

        .modal form button:hover {
            background: #ffca00;
        }

        .modal .signup-link {
            display: block;
            text-align: center;
            margin-top: 15px;
            font-size: 1rem;
            color: #343a40;
        }

        .modal .signup-link:hover {
            color: #ffd700;
            text-decoration: underline;
        }

        /* Close button */
        .close {
            color: #aaa;
            font-size: 28px;
            font-weight: bold;
            position: absolute;
            right: 20px;
            top: 10px;
            transition: color 0.3s;
        }

        .close:hover,
        .close:focus {
            color: #333;
            cursor: pointer;
        }

        /* Animation */
        @keyframes fadeIn {
            0% { opacity: 0; transform: translateY(-20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes scaleUp {
            0% { transform: scale(0.9); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        /* Adding responsiveness */
        @media (max-width: 768px) {
            .modal-content {
                width: 95%;
            }
            .cta-button {
                padding: 12px 24px;
            }
        }

        /* TOGGLE PASSWORD STYLE */
        .input-container {
            position: relative;
            width: 100%;
        }

        #password {
            width: 100%;
            padding: 10px;
            padding-right: 40px; /* Space for the icon */
            box-sizing: border-box;
        }

        #togglePassword {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 18px;
            color: #888;
        }

        #togglePassword:hover {
            color: #333; /* Change color on hover */
        }

        /* Forgot Password Style */
        .forgot-password-link {
            text-align: left;
            font-size: 1rem;
            margin-top: 5px;
        }

        .forgot-password-link a {
            color: #343a40;
            text-decoration: none;
            font-weight: bold;
        }

        .forgot-password-link a:hover {
            color: #555;
            text-decoration: underline;
        }