:root {
    --yellow: #FFD834;
    --green: #09745F;
    --pink: #FFC3DC;
    --purple: #E8D7FF;
    --red: #FE5A36;
}

* {
    font-family: "Montserrat", serif;
    margin: 0;
}

header {

    display: flex;
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--purple);

    nav {

        display: flex;
        flex-direction: row;
        justify-content: end;
        width: 100%;
        height: 100px;

        .nav {
            width: 120px;
            height: 100px;
            text-decoration: none;
            font-weight: bold;
            color: var(--green);
            text-align: center;
            vertical-align: middle;
            line-height: 100px;
        }

        .nav:hover {
            text-shadow: 0px 0px 20px var(--green);
        }
    }

    img {
        height: 140px;
        margin: -20px 0;
        padding-left: 20px;
    }

}

/* Position .dropdown in the nav alongside other links */
.dropdown {
    position: relative;
    display: inline-block;
}

/* The "Policies" link that toggles the dropdown */
.dropbtn {
    /* Match styling of .nav anchors */
    text-decoration: none;
    font-weight: bold;
    color: var(--green);
    text-align: center;
    line-height: 100px;
    /* match your header's height */
    display: inline-block;
    width: 120px;
}

/* The hidden menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Submenu links inside the dropdown */
.dropdown-content a {
    display: block;
    padding: 10px;
    color: var(--green);
    text-decoration: none;
    text-align: left;
    line-height: normal;
}

.dropdown-content a:hover {
    background-color: var(--purple);
}

/* Show the dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.container{
    width: 90%;
    display: flex;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 30px auto;

    h2{
        font-family: "Londrina Solid", cursive;
        font-size: 2.5rem;
    }

    .text{
        width: 50%;
        /* background-color: aqua; */
        padding: 20px;
        border-right: 2px solid #eaeaea;

        .logo{
            display: flex;
            justify-content: space-around;
            
            
            a{
                width: 50px;
                height: 50px;
                border-radius: 50px;
                background-color: var(--green);
                text-decoration: none;
                margin-top: 10px;

                i{
                    display: block;
                    color: #fff;
                    font-size: 30px;
                    text-align: center;
                    line-height: 50px;
                }
            }

        }

        .description{
            margin-top: 30px;
        }

    }

    .form-container{
        width: 50%;
        padding: 20px;
    }

    button{
        border-radius: 5px;
    }
}




/* Form Labels */
label {
    display: block;
    font-weight: bold;
    margin-top: 15px;
}

/* Form Inputs */
input, textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background-color: var(--green);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 15px;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}
button:hover {
    background-color: #075D4A;
}

/* Success Message */
#successMessage {
    color: green;
    display: none;
    margin-top: 15px;
    font-weight: bold;
    text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .form-container {
        width: 90%;
    }
    .checkbox-group {
        flex-direction: column;
    }
}


/* Footer */
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: var(--purple);
    color: var(--green);
}