.contact{
    background-size: 100% 100%;
    width: 100%;
    height: 100vh;
}
.head{
    background-color: rgb(3, 3, 108);
    border-radius: 5px;
    margin-top: 40px;
    -webkit-box-shadow: 10px 10px 25px -8px rgba(13,28,128,1);
    -moz-box-shadow: 10px 10px 25px -8px rgba(13,28,128,1);
    box-shadow: 10px 10px 25px -8px rgba(13,28,128,1);
}

.effect-1{
    border: 0;
    outline: none;
    width: 100%;
    padding: 7px 0;
    border-bottom: 1px solid black;
}

.effect-1 ~ .Focus-border{
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #0b1e7d;
    transition: 0.4s;
}

.effect-1:focus ~ .Focus-border{
    width: 100%;
    transition: 0.4s;
    left: 0;
}

#btn1{
    background: #0b1e7d;
    color: white;
    outline: none;
    border: none;
    border-radius: 5px;
    height: 40px;
    width: 180px;
}

#btn1:hover{
    background-color: #1b34b0;
    color:white;
}