.container{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 700px;
    margin: 200px 0px;
}
.form-container{
    width: 40%;
    border: #1A237E 1px solid;
    border-radius: 5px;
    height: 600px;
}
.subtitle{
    margin: 20px 0px;
    text-align: center;
    color: #1A237E;
    font-size: 25px;
}
label{
    margin: 10px;
}
input{
    margin: 10px;
    width: 95%;
    font-size: 15px;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid;
}
textarea{
    height: 100px;
    margin: 10px;
    width: 95%;
    padding: 5px;
    font-size: 15px;
    resize: none;
    border-radius: 5px;
    border: 1px solid;
}
button{
    width: 40%;
    height: 40px;
    background: #1A237E;
    color: white;
    font-size: 20px;
    padding: 5px;
    border: none;
    border-radius: 10px;
    margin-right: 28%;
    margin-top: 20px;
    transition: 0.7s;
}
button:hover{
    transform: scale(1.1);
}
button:active{
    background: white;
    border: #1A237E 1px solid;
    color: #1A237E;
}
.contact-information{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: 50px 0px;
}
.info-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin: 10px;
}
.info-text{
    margin: 10px;
    font-size: 20px;
}
.info-icon{
    color: #1A237E;
    font-size: 30px;
}
.link-information{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px #000 solid;
}
.social-icon{
    font-size: 30px;
    margin: 10px;
    cursor: pointer;
    transition: 0.7s;
}
.social-icon:hover{
    transform: scale(1.1);
}
.instagram-icon{
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.x-icon{
    color: #1DA1F2;
}
.linkedin-icon{
    color: #0A66C2;
}
/* When screen width is 768px make contact-information flex-direction is column*/
@media (max-width: 768px) {
    .contact-information {
        flex-direction: column;
    }
}
/* Tablet */
@media (max-width: 650px){
    .form-container{
        width: 95%;
    }
}
/* Phone */
@media (max-width: 400px){
    .form-container{
        width: 90%;
    }
    input{
        font-size: 10px;
        width: 90%;
    }
    textarea{
        font-size: 10px;
        width: 90%;
    }
    .info-text{
        font-size: 15px;
        margin: 5px;
    }
}