
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap');
body {
    font-family: "Rubik", sans-serif;
}

.image-container{
    /*background: url('image/bg.jpg') center no-repeat;*/
    background: linear-gradient(180deg, rgba(145,190,54,1),rgba(0,108,181,1));
    justify-content: center;
    min-height: 100vh;
    position: relative;
    color: #fff;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.form-container{
    background-color: #e0f4fd;
    display: flex;
    justify-content: center;
}

.form-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.form-box h4{
    font-weight: bold;
    color: #fff;
    background: -webkit-linear-gradient(180deg, rgba(145,190,54,1),rgba(0,108,181,1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-box .form-input{
    position: relative;
}

.form-box .form-input input{
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    border:none;
    border-radius: 5px;
    outline: none;
    background: white;
    padding-left: 45px;
}

.form-box .form-input span{
    position: absolute;
    top: 8px;
    padding-left: 20px;
    color: #777;
}

.form-box .form-input input::placeholder{
    padding-left: 0px;
}

.form-box .form-input input:focus,
.form-box .form-input input:valid{
    border-bottom: 2px solid #91BE36;
}

.form-box input[type="checkbox"]:not(:checked) + label:before{
    background: transparent;
    border: 2px solid #fff;
    width: 15px;
    height: 15px;
}

.form-box .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before{
    background-color: #91BE36;
    border: 0px;
}

.forget-link, .register-link, .login-link{
    color: #fff;
    font-weight: bold;
}

.forget-link:hover, .register-link:hover, .login-link:hover{
    color: #292525;
}

.form-box button[type="submit"]{
    border: none;
    cursor: pointer;
    width: 180px;
    height: 40px;
    border-right: 5px;
    background-color: #fff;
    color: #000;
    font-weight: bold;
    transition: 0.5s;
}

.form-box button[type="submit"]:hover{
    box-shadow: 0px 9px 10px -2px rgba(0,0,0,0.55);
    -webkit-box-shadow: 0px 9px 10px -2px rgba(0,0,0,0.55);
    -moz-box-shadow: 0px 9px 10px -2px rgba(0,0,0,0.55);
    background-color: #006db5;
    color: #fff;
}

.form-box button[type="submit"]:disabled,button:disabled {
    background-color: #999;
    color: #999;
    cursor: not-allowed;
}

.mob-view{
    display: none;
}

@media screen and (max-width: 500px) {
    .mob-view{
        display: block;
    }

}