/* Coded with love by Mutiullah Samim */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "arial", "Nunito", sans-serif
}
.user_card {
    height: 500px;
    width: 60%;
    margin-top: auto;
    margin-bottom: 15px;
    background: #ffffffcc;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5px;
    transform: translateY(35%);
}
.register-form .user_card {
    top: -160px;
}
.reset-pass-form .user_card {
    height: 300px;
    margin-top: 50px;
}
.reset-form .user_card {
    height: 400px;
    margin-top: 50px;
}
.brand_logo_container {
    position: absolute;
    height: 220px;
    width: 220px;
    top: -100px;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
}
.brand_logo {
    width: 100%;
    border-radius: 50%;
}
.form_container {
    margin-top: 80px;
}
.body-auth form {
    width: 100%;
    padding: 0 100px;
}
.body-auth form .form-control:focus {
    border: 1px solid #005696;
}
.login_btn {
    width: 100%;
    background: #005696 !important;
    color: white !important;
}
.login_btn:focus {
    box-shadow: none !important;
    outline: 0px !important;
}
.input-group-text {
    background: #005696 !important;
    color: white !important;
    border: 0 !important;
    border-radius: 0.25rem 0 0 0.25rem !important;
}
.input_email,
.input_pass,
.input_name:focus {
    box-shadow: none !important;
    outline: 0px !important;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #005696 !important;
}
.register-form input {
    border-radius: 0.25rem !important;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .register-form form {
        padding: 20px;
    }
    .user_card {
        width: 75%;
    }
}
@media (max-width: 991px) {
    .body-auth form {
        padding: 15px;
    }
}
@media (max-width: 768px) {
    .user_card {
        width: 100%;
        transform: translateY(20%);
    }
    .register-form .user_card {
        height: 500px;
    }
    .register-form label, .reset-pass-form label, .reset-form label {
        display: none;
    }
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
}
input:-webkit-autofill:hover,
textarea:-webkit-autofill:hover,
select:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
}

.trumbowyg-box{
	margin: 0px !important
}

/* Errors */
.has-error {
    color: #f00;
}

.has-error select{
	color: #6e707e;
	border: 1px solid #f00;
}
.has-error input{
    border-color: #f00;
}
label {
    display: inline-block !important;
}
