@font-face {
 font-family: myFont;
    src: url(../Admin/fonts/EkMukta-Regular.ttf);
 }

body,
html {
	font-family: myFont !important;
	position: relative;
	height: 100%;
	/*background: #f5f7fa;*/
	color: #505458
}

.image-container{
    background: url('bg.png') center no-repeat;
    background-size: cover;
    height: 100vh;
}

.form-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.form-box {
    /*border: 2px solid #e55940;*/
    border: 2px solid #0d51a1;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-box h4 {
    font-weight: bold;
}

.form-box .form-input {
    position: relative;
}

.form-box .form-input input {
    width: 100%;
    height: 40px;
    margin-bottom: 15px;    
    box-sizing: border-box;
    box-shadow: none;
    border: 1px solid #ffe0da;
    border-radius: 40px;
    outline: none;
    color: black;
    background: transparent;   
    padding-left: 40px;
}

    .form-box .form-input span {
        position: absolute;
        top: 8px;
        padding-left: 15px;
        /*color: #ff6347;*/
        color: #0f5dbc;
    }

.form-box .form-input input::placeholder {
    color: black;
    padding-left: 0px;
}

    .form-box .form-input input:focus,
    .form-box .form-input input:valid {
        /*border: 2px solid #ff6347;*/
        border: 2px solid #0d5ec0;
    }

.form-box .form-input input:focus::placeholder {
    color: #454b69;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #e55940 !important;
  border:0px;
}

.form-box button[type="submit"] {
    margin-top: 10px;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    /*background: linear-gradient(45deg, #e55940, #fb8a76);*/
    background: linear-gradient(45deg, #0747a0, #0d53a6);
    color: #fff;
    font-weight: bold;
    transition: 0.5s;
}

    .form-box button[type="submit"]:hover {
        /*background: linear-gradient(45deg, #fb8a76, #e55940);*/
        background: linear-gradient(45deg, #0d53a6, #0747a0);
    }

.forget-link, .login-link, .register-link {
    /*color: #fb8a76;*/
    color: #0169e9;
    font-weight: bold;
}

.forget-link:hover , .login-link:hover , .register-link:hover {
    /*color: #e55940;*/
     color:#0d53a6;
    text-decoration: none;
}

.form-box .btn-social {
    color: white;
    border: 0;
}

.form-box .btn-facebook {
    background: #4866a8;
}

.form-box .btn-google {
    background: #da3f34;
}

.form-box .btn-twitter {
    background: #33ccff;
}

.form-box .btn-facebook:hover {
    color: white;
    background: hsla(221, 40%, 40%, 1);
}

.form-box .btn-google:hover {
    color: white;
    background: hsla(4, 59%, 47%, 1);
}

.form-box .btn-twitter:hover {
    color: white;
    background: hsla(195, 78%, 54%, 1);
}