*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background: #F5F5F5;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 10px;
}
.main{
    max-width: 1000px;
    width: 100%;
    padding: 25px 30px;
}
.book{
    display: block;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}
.book h2{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 70px;
    color: #0A4931;
}
.book p{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #001E33;
}
form .user-details{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
form .user-details .input-box{
    width: calc(95% / 2 - 20px);
}
.inpu{
    height: 45px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
}
label{
    padding-bottom: 20px;
}
.tet{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
a{
    float: right;
    position: relative;
    width: 199px;
    height: 44px;
    color: black;
    padding-top: 10px;
    background: #FFFFFF;
    border: 1px solid #0A4931;
    transition: 0.3s;
    border-radius: 3px;
    text-align: center;
    text-decoration: none;
}
a:hover{
    cursor: pointer;
    color: white;
    background-color: #0A4931;
    transform: scale(1.1);
}