 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;

}

.main-container{
    background-color: rgb(240, 239, 239);
    display: flex;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    gap:1em;
}
.contact h2{
    font-size: 40px;
    color: orangered;
    font-weight: 500;
    text-align: center;
    margin: 10px ;
}
.contact form{
    width: 700px;
    text-align: center;

}

form .input-box{
    display: flex;
    justify-content: space-between;

}
.input-box .input-field{
    width: 48.5%;
}
.field .item{
    width: 100%;
    padding: 18px;
    background: transparent;
    border: 2px solid orangered;
    outline: none;
    border-radius: 20px;
    box-shadow: 4px 4px 7px  rgb(255, 81, 0);
    font-size: 16px;
    color: black;
    margin: 12px 0;
    transition: all 1s;

}

.item:hover{
    transform:scale(1.025);
}
.field .item::placeholder{
    color: black;
}
form .textarea-field .item{
    resize: none;
}
    

form button{
    padding: 12px 32px;
    background: orangered;
    border: none;
    border-radius: 6px;
    box-shadow: 0 0 5px orangered;
    font-size: 16px;
    color: white;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;

}
form button:hover{
    box-shadow: 2px 2px 4px orangered;
    background: white;
    color:black;
}
.contact-info{
    color: white;
    height:230px;
    width: 500px;
    margin-top: 72px;
    margin-left: 10px;
    border-radius: 6px;
    background-color: rgb(245, 167, 139);
    padding:0.8em;
    
}
::-webkit-scrollbar {
    display: none;
}
.contact-info h3{
    font-size: 22px;
    color:black;
    font-weight: 400;
    text-align: center;
    padding:8px;
    margin-top: 0;
    text-decoration: underline;
}

.info div {
    display: flex;
    align-items: center;
    text-align: center;
}
.info div span{
    background-color: orangered;
    font-size: 24px;
    color: white;
    border: 2px solid orangered;
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    border-radius: 50%;
    margin: 4px 8px 10px 11px;
    box-shadow: inset 0 0 orangered,0 0 10px orangered;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;

}
.info div a{
    margin-bottom: 11px;
    text-decoration: none;
    color:rgb(7, 7, 66);

}
.info div p{
   
    color:rgb(7, 7, 66);
}
.contact-map{
    padding: 0;
    margin-top:1rem ;
    margin-right: 10px;;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-map iframe{
width: 500px;
height: 323px;
margin-top: 5px;

}