.formBorder {
    margin: 0;
    padding: 0;
    width: 100%;
}

.form {
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-bottom: 40vw;
    border-radius: 25px;
    width: 100%;
    max-width: 550px;
    justify-content: space-evenly;
    min-height: fit-content;
    background-color: var(--Brand-Color-003);
}

.form h1,
.form h3 {
    width: 100%;
    padding: 10px 0;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    -webkit-text-stroke: 2px var(--Brand-Color-002);
    color: var(--Brand-Color-003);
    background-color: var(--Brand-Color-002);
    border-radius: 12px 12px 0 0;
}

.formLink {
    padding: 5px;
    margin: 10px;
    width: fit-content;
    color: black;
}

.inputSection {
    margin-top: 8px;
    display: flex;
    padding: 4px;
    align-items: center;
    flex-direction: column;
}

.form input,
.form select {
    margin: 5px;
    padding: 5px;
    width: 100%;
    max-width: 400px;
    height: 35px;
    border-radius: 8px;
    border: none;
}

.form textarea {
    width: 100%;
    max-width: 400px;
    height: 150px;
    padding: 5px 15px;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    background-color: rgba(255, 255, 255, 0.74);
}

.form button {
    margin: 10px auto;
    width: 150px;
    height: 50px;
    border-radius: 5px;
    border: none;
    transition: all 0.5s ease-in-out;
}

.LableName {
    margin-top: 8px;
    padding: 5px;
    width: 100%;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
}

.agreeBoxes {
    z-index: 100;
    display: flex;
    margin-top: 8px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.agreeBoxes p {
    width: 100%;
    padding: 3px;
    margin-right: 25px;
}

.agreeBoxes input[type="checkbox"] {
    width: 25px;
    height: 25px;
}

.formLinksUL {
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    text-align: center;
    font-weight: 600;
    color: var(--Brand-Color-003);
    background-color: var(--Brand-Color-002);
    border-radius: 0 0 12px 12px;
}

.formLinksUL li a {
    padding: 15px;
    border-radius: 20px;
    color: var(--Brand-Color-003);
    transition: all 750ms ease-in-out;
    width: 100%;
    max-width: 200px;
    text-align: center;
}

.formLinksUL li a:hover {
    color: var(--Brand-Color-002);
    background-color: var(--Brand-Color-003);
}

/* Mobile Styles */
@media screen and (max-width: 690px) {
    .form {
        max-width: 90%;
    }

    .inputSection {
        flex-direction: column;
    }

    .LableName {
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .form {
        margin-left: 0;
        width: 90%;
    }

    .formLinksUL {
        flex-direction: column;
    }

    .formLinksUL li a {
        margin-top: 10px;
        padding: 8px;
        width: 100%;
        max-width: none;
    }
}