.login {
    background: url('../img/auth-bg.png') center center no-repeat;
    background-size: cover;
    top: 0;
    width: 100%;
    bottom: 0;
    opacity: 1;
    z-index: 999;
    min-height: calc(100vh - 142px );
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    background-color: #8a8a8a;
    background-blend-mode: multiply;
}

.login a {
    text-decoration: none;
}

.login a img{
    width: 100px;
    display: none;
}

.login .form-section {
	max-width: 600px;
	margin: 0 auto;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 0;
	background: #FDFDFF;
	border-radius: 50px;
	padding: 50px;
	color: #000;
	min-height: 400px;
}


.login .form-section p {
    margin-bottom: 0;
    text-align: center;
    font-size: 16px;
}

.login .form-section h4 {
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
}

.login .form-section h3 {
    font-weight: 500;
    font-size: 27px;
    color: #000;
}

.login .form-section .form-group {
    margin-bottom: 25px;
}

.login .form-section .form-control {
	font-size: 16px;
	outline: none;
	padding: 7px 15px;
	color: #000;
	height: 50px;
    background: #F3F3F3;
	border-radius: 5px;
	border: 1px solid #ebebeb !important;
	position: relative;
    box-shadow: none !important;
}

.login .form-section .btn-md {
    cursor: pointer;
    height: 50px;
    color: #fff;
    padding: 7px 20px 7px 20px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Jost', sans-serif;
    border-radius: 3px;
}


.login .form-section .btn.btn-theme {
    box-shadow: none;
}

.password-icon a {
    right: 20px;
    top: 25%;
}

.w-80 {
    width: 80%;
}

.login .form-check-input {
    background: transparent;
    border-color: #000;
    border-radius: 2px !important;
}

.form-check-input:checked {
    background-color: #F16623;
    border-color: #F16623;
}

a.forgot-password{
    color: #F16623;
}

.login .form-section button:focus {
    outline: none;
    outline: 0 auto -webkit-focus-ring-color;
}


@media (max-width: 768px) {
    .login .form-section {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .forgot-password {
        float: none !important;
        margin: auto;
        display: block !important;
        width: 100% !important;
        clear: both !important;
        text-align: center;
    }
}