 @import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');

         body {
            display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    font-family: 'Montserrat', sans-serif;
    color: #333333; /* dark grey */
    padding-top: 55vh;
    overflow: hidden; /* Ensure no content overflows the rounded corners */
    transition: opacity 0.5s ease-in-out;
    position: relative;
    border-radius: 90px; /* Apply border-radius to the body */
    margin: 10; /* Ensure no margin is applied to the body */
    padding: 10; /* Ensure no padding is applied to the body */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
        }

        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
        }

            body::before {
            content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url('../images/WOW2.jpeg') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    border-radius: inherit; /* Ensure the pseudo-element inherits the border-radius */
    z-index: -1;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
        }


        .form-container {
            background-color: rgba(255, 255, 255, 0.85);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            max-width: 400px;
            width: 100%;
            box-sizing: border-box;
            z-index: 1;
        }

        .form-header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .form-header img {
            height: 50px;
            margin-right: 10px;
        }

        .form-header h1 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #333333; /* dark grey */
        }

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

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #333333; /* dark grey */
            font-weight: 500;
            font-size: 1rem;
        }

        .form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 20px;
            box-sizing: border-box;
            font-size: 1rem;
        }

        .form-group button {
            width: 100%;
            padding: 12px;
            background-color: rgba(255, 255, 255, 0.8);
            color: #333333; /* dark grey */
            border: 2px solid #333333; /* dark grey */
            border-radius: 20px;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s, border-color 0.3s;
            font-size: 1rem;
            font-weight: bold;
        }

        .form-group button:hover {
            background-color: #333333; /* dark grey */
            color: #FFFFFF; /* pure white */
            border-color: #333333; /* dark grey */
        }

        .form-group a {
            display: block;
            margin-top: 10px;
            text-align: center;
            color: #333333; /* dark grey */
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
        }