.contact-div{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    gap: 20px;
}

.c-left-part{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 700px;
    gap: 30px;
    padding-left: 30px;
    
}

.form-div{
    display: flex;
    flex-direction: column;
}

.form-div input{
    background-color: var(--white-blue);
    margin-bottom: 20px;
    width: 350px;
    height: 40px;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 5px 5px 40px var(--box-shadow);
}

.c-right-part{
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-right-part iframe{
    width: 80%;
    height: 80%;
}

footer{
    background-color: var(--black-blue);
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}