@import url('https://fonts.googleapis.com/css2?family=Koulen&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hanuman:wght@100;300;400;700;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    font-family: 'Montserrat', sans-serif;
}
.koulen-regular {
    font-family: "Koulen", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.hanuman-thin {
    font-family: "Hanuman", serif;
    font-weight: 100;
    font-style: normal;
  }

body{
    background-color: #183540;
    background: linear-gradient(to bottom, #2d677a, #183540);
    height: 100vh;
}
.logo{
    width: 200px;
    height: 80px;
    margin-left: 5%;
}
.logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.center{
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* background-color: cyan; */
}
.container{
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    /* position: relative; */
    overflow: hidden;
    width: 900px;
    /* height: 550px; */
    max-width: 100%;
    /* min-height: 480px; */
}
.container .row{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container .row .col-12{
    width: calc(100%/2);
    height: 550px;
    padding: 10px 45px;
    display: flex;
    align-items: center;
    /* background-color: cyan; */
}
.container .row .col-12 h1{
    font-family: "Koulen", sans-serif;
    color: #071516;
    font-size: 30px;
}
.container .row .col-12 p{
    font-family: "Hanuman", serif;
    padding: 10px 0px;
    color: #292831;
}
.container .row .col-12 form{
    /* background-color: red; */
    display: flex;
    flex-direction: column;
}
.container .row .col-12 form input{
    color: #292831;
    background-color: #e2e2e3;
    border: none;
    margin: 8px 0;
    padding: 15px 20px;
    font-size: 18px;
    border-radius: 8px;
    width: 100%;
    outline: none;
    font-family: "Hanuman", serif;
}
.container .row .col-12 form button {
    background-color: transparent;
    border: none;
    margin-top:5px;
}
.container .row .col-12 form button a{
    text-decoration: none;
    font-family: "Koulen", sans-serif;
    letter-spacing: 1px;
    font-weight: 100;
    font-size: 18px;
    display: block;
    color: #F4F5F6;
    border-radius: 8px;
    background-color: #183540;
    padding: 8px 15px ;
}
.container .row .col-12:nth-child(2){
    border-radius: 150px 0 0 100px;
    background-color: #183540;
    background: linear-gradient(to bottom, #2d677a, #183540);
    display: flex;
    align-items: center;
}
.container .row .col-12 .body-txt{
    text-align:center;
}
.container .row .col-12 .body-txt h1{
    color: #F7941F;
}
.container .row .col-12 .body-txt p{
    padding: 15px;
    color: #F4F5F6;
    margin-bottom: 20px;
}
.container .row .col-12 .body-txt a{
    font-family: "Koulen", sans-serif;   
    text-decoration: none;
    color: #F4F5F6;
    padding: 10px 45px;
    border: 1px solid #F7941F;
    margin-top: 10px;
    border-radius: 8px;
}