@font-face {
    font-family: "montserratbold";
    src: url("montserrat-bold-webfont.woff2") format("woff2"),
        url("montserrat-bold-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "montserratitalic";
    src: url("montserrat-italic-webfont.woff2") format("woff2"),
        url("montserrat-italic-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "montserratmedium";
    src: url("montserrat-medium-webfont.woff2") format("woff2"),
        url("montserrat-medium-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "montserratregular";
    src: url("montserrat-regular-webfont.woff2") format("woff2"),
        url("montserrat-regular-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "montserratsemibold";
    src: url("montserrat-semibold-webfont.woff2") format("woff2"),
        url("montserrat-semibold-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

#home {
    background: url("../images/Rectangle21.png") no-repeat center center;
    height: 100vh;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: -30px;
}
#home h2 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    color: #fff;
}
#home p {
    color: #fff;
}
#home .otp-container {
    background: #fff;
    width: 40%;
    border-radius: 30px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    padding: 100px;
    box-shadow: 3px 3px 3px 3px #eaeaea;
}

#home .otp-container img {
    align-self: center;
    width: 40%;
    margin-right: 50px;
}
#home .otp-container form {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-self: center;
}
#home .otp-container form p {
    border: 2px solid #5fb09a;
    border-radius: 10px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
#home .otp-container form input[type="text"] {
    border-bottom: 2px solid #cccccc;
    border-width: 0;
}
#home .otp-container form .button {
    padding: 10px 30px;
    background: #5fb09a;
    border-radius: 10px;
    width: 100%;
    font-size: 15px;
    color: #fff;
    border-width: 0;
}
#home .otp-container form .form-field {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}
#home .otp-container form .form-field label {
    color: #000;
}
a.account {
    margin-top: 50px;
    color: #fff;
    font-size: 20px;
}
/*Responsive starts here*/
@media all and (max-width: 1280px) {
    #home .otp-container {
        flex-direction: column;
        padding: 35px;
    }
    #home .otp-container img {
        margin-right: 0;
    }
}
@media all and (max-width: 640px) {
    #home {
        height: 70vh;
        padding-top: 160px;
    }
    #home .otp-container form .button {
        margin-top: 0;
    }
    #home .otp-container form .form-field {
        margin-bottom: 24px;
    }
}
@media all and (max-width: 480px) {
    #home .otp-container form .button {
        padding: 10px 45px;
        font-size: 15px;
    }
    #home .otp-container form .form-field {
        margin-bottom: 15px;
    }
    #home .otp-container img {
        display: none;
    }
}
