*{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #bb1414;
}

.content{
    display: flex;
    align-items: center;
}

.close{
    position: absolute;
    z-index: 1;
    display: flex;
    padding: 20px 20px;
}

.address-form-container{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-content{
    display: flex;
    gap: 40px;
}

iframe {
    width: 600px;
    height: 450px;
    border: 1px solid #cfcfcf; 
    border-radius: 10px;
}

@media(max-width:1100px){
    .map{
        display: none;
    }

    .form-content{
        gap: none;
    }
}