  body {
        margin: 0;
        padding: 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: #000;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .form-container {
        background: rgba(255, 255, 255, 0.1);
        /* Slightly lightened for better contrast */
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(20px);
        padding: 40px;
        border-radius: 20px;
        width: 90%;
        max-width: 400px;
        color: white;
        text-align: center;
        position: relative;
        animation: fadeIn 2s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .form-container h1 {
        margin-bottom: 10px;
        font-size: 2.5rem;
        /* Adjusted for consistency */
    }

    .form-container p.subtitle {
        margin-bottom: 30px;
        font-size: 1.2rem;
    }

    .form-container label {
        display: block;
        text-align: left;
        margin-bottom: 5px;
        font-size: 1rem;
    }

    .form-container input,
    .form-container select {
        width: 100%;
        padding: 15px;
        margin-bottom: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        /* Added subtle border for better visibility */
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 1rem;
        outline: none;
        box-sizing: border-box;
        appearance: none;
        /* Helps with custom styling in some browsers */
    }

    .form-container select {
        background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
        /* Custom white arrow for better contrast */
        background-repeat: no-repeat;
        background-position: right 15px center;
        padding-right: 40px;
        /* Space for arrow */
    }

    .form-container select option {
        background-color: #333;
        /* Dark background for options to ensure visibility */
        color: white;
        /* White text for contrast */
    }

    .form-container button {
        width: 100%;
        padding: 12px 20px;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        cursor: pointer;
        background-color: #e74c3c;
        color: white;
        transition: background-color 0.3s ease;
    }

    .form-container button:hover {
        background-color: #c0392b;
        /* Added hover effect */
    }

    .form-container a {
        color: #ff8e8e;
        text-decoration: underline;
        cursor: pointer;
    }

    .error-message {
        color: #ff6b6b;
        margin-top: 10px;
        font-size: 0.9rem;
        display: none;
    }

    @media (max-width: 480px) {
        .form-container {
            padding: 20px;
        }
    }

   