.contact {
    width: 100%;
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    justify-content: space-between;
}

.contact h1 {
    font-size: 10rem;
}

.gap-5 {
    gap: 20px;
}

.form_container {
    flex-grow: 1;
    padding: 20px;
    width: 100%;
    max-width: 55rem;
}

.form_container input {
    font-size: 1.6rem;
    margin: 20px;
    border-bottom: 3px solid rgb(178, 177, 177);
    color: #222 !important;
    padding: 10px 0;
    animation: inputAnimation 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form_container select {
    font-size: 1.6rem;
    margin: 20px;
    border-bottom: 3px solid rgb(178, 177, 177);
    color: #222 !important;
    padding: 10px 0;
    animation: inputAnimation 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form_container .submitBtn {
    max-width: max-content;
    text-align: start;
    transition: all 0.2s ease-in-out;
    padding: 12px 32px;
    background: white;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
}

.form_container .submitBtn:hover {
    box-shadow: 0 0 10px rgb(178, 177, 177);
}


.options {
    position: relative;
}

.options div {
    position: absolute;
    top: 3rem;
    left: 1rem;
    font-size: 1.3rem;
    color: #555;
    padding: 0.2rem 1rem;
    background: #eee;
    box-shadow: 2px 2px 10px rgb(178, 177, 177);
    display: none;
    width: 100%;
}

.options div.options__div {
    display: block;
    transition: all 0.2s ease-in-out;
    animation: fade 0.2s ease-in-out;
}

.arrow_down {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1%;
    width: 20px;
    fill: none;
}

.options div option {
    padding: 0.4rem 0;
    cursor: pointer;
    border-bottom: 1px solid #666;
    font-weight: 500;
}

.options div option:last-child {
    border-bottom: none;
}

.form_container textarea {
    font-size: 1.6rem;
    margin: 40px 20px;
    background-color: rgb(215, 211, 211);
    color: #222 !important;
    padding: 10px;
    min-height: 160px;
    animation: inputAnimation 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.toast-notification {
    position: fixed;
    top: 2rem;
    left: 50%;
    min-width: max-content;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    z-index: 100000;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.toast-notification.hidden {
    opacity: 0;
    transform: translateY(-100%);
}

@keyframes inputAnimation {
    0% {
        opacity: 0;
        width: 0;
    }

    100% {
        opacity: 1;
        width: 100%;
    }
}

@media (min-width:1200px) {
    .form_container {
        padding: 50px;
    }
}

#alert {
    position: fixed;
    inset: 0;
    min-height: 100vh;
    overflow: hidden;
    width: 100%;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}

#alert.show {
    transform: scale(1);
}

#alert .transparent-bg {
    min-height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.alertBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 10px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.alertBox p {
    font-size: 1.6rem;
    text-align: center;
    font-weight: 600;
    line-height: 1.6;
    color: #333;
}

.alertBox svg {
    color: #555;
    background: transparent;
    fill: none;
    cursor: pointer;
}

.alertBox a {
    width: 40px;
}

.alertBox svg:first-child {
    width: 100px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}