body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    background-color: #fbf1e5;
}

.logo {
    margin-left: 250px;
}

#contact1 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100%;
    margin: 0 auto;
    margin-top: 80px;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 30px; */
    overflow: hidden;
}

.contact1-container {
    padding: 20px 10px;
    /* margin: 50px 0; */
    backdrop-filter: blur(10px) brightness(40%);
    border-radius: 10px;
    /* max-width: 800px; */
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact1-container h1 {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    /* font-size: clamp(1rem, 1rem + 7vw, 2.5rem); */
}

#deleteAccountForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact1-container .inputs {
    width: 100%;
}

.contact1-container h1 {
    color: white;

}

.contact1-container .checkbox {
    width: 70%;
    margin: 0 auto;
    color: white;
}

.contact1-container .inputs {
    width: 86%;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid black;
    border-radius: 10px;
    height: 8vh;
    background-color: white;
    /* margin: 10px 0; */
    box-sizing: border-box;
}

.country-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 0;
    margin-bottom: 0;
}

.country-phone .inputs select {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    border-radius: 10px;
    padding: 0 10px;
    cursor: pointer;
    background-color: transparent;
}

#country-code-input select {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flag-icon {
    position: absolute;
    left: 10px;
    /* Position the flag within the select box */
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.country-phone .phone-number {
    width: 100%;
}

textarea {
    width: 100%;
    padding-left: 10px;
    padding-top: 10px;
    height: 15vh;
    overflow: hidden;
    border: 1px solid black;
    border-radius: 10px;
    font-size: 18px;
    background-color: white;
    /* margin: 10px 0; */
    box-sizing: border-box;
}

.checkbox {
    width: 70%;
    margin: 0 auto;
    height: 100%;
    /* margin: 10px auto; */
}

.consentCheckbox {
    display: inline-block;
    height: 100%;
}

.checkbox span {
    font-size: 16px;
    margin: 0 auto;
}

.contact1-container button {
    width: 86%;
    margin: 0 auto;
    height: 8vh;
    /* margin: 10px 0; */
    font-size: 1.4rem;
    border-radius: 10px;
    border: none;
    font-weight: bold;
    border: 1px solid #BF8F2C;
    background-color: #BF8F2C;
    color: white;
    transition: 0.2s linear;

}

.contact1-container button:hover {
    background-color: #d6ab55;
    border: 1px solid #BF8F2C;
    color: white;
}

.contact1-container .inputs input {
    font-size: 18px;
    border: none;
    width: 100%;
    height: 100%;
    padding-left: 10px;
    box-sizing: border-box;
}


.collage {
    width: 50%;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.collage p {
    width: 100%;
    font-family: 'Montaga', serif;
    margin-bottom: 10px;
    color: black;
    text-align: center;
    font-size: clamp(1rem, 1rem + 5vw, 2rem);
}

.collage img {
    width: 450px;
}

.image {
    width: 40%;
    margin: 0 auto;
    object-fit: contain;
    scale: 0.9;
}

/* Responsiveness  */
@media (max-width: 996px) {

    .overlay-content {
        position: absolute;
        top: 40%;
        left: 50%;
    }

    .title {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }

    .overlay-content h2 {
        font-size: 1.25rem;
    }

    .overlay-content button {
        font-size: 0.875rem;
    }

    .links .link:hover {
        border-bottom: none;
    }

    .top-container .logo {
        display: none;
    }

    hr {
        display: none;
    }

    .links {
        display: none;
    }

    #contact {
        display: flex;
        flex-direction: column-reverse;
    }

    #contact .collage {
        margin: 0 5%;
        width: 90%;
    }

}

@media(max-width:768px) {
    .contact1-container .inputs {
        height: 5vh;
    }

    .contact1-container button {
        height: 5vh;
    }

    h1 {
        font-size: 1.5em;
    }

    .contact1-container .inputs input {
        font-size: 1em;
    }

    .contact1-container button {
        font-size: 1em;
    }

    span {
        font-size: 1em;
    }

}

@media(max-width: 440px) {
    .contact1-container .inputs {
        width: 100%;
        margin: 0 auto;
    }

    .country-phone .inputs select {
        padding: 0;
    }

    .inputs {
        font-size: 14px;
    }

    .checkbox span {
        font-size: 14px;
    }
}