.background, .background-image-holder {
    background: #f2f2f2;
    position: absolute;
    left: 0;
}

.background-image {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("/static/img/backgroundLogin.svg");
    background-size: cover;
}

.login-box
{
    position: relative;
    max-width: 440px;
    width: calc(100% - 40px);
    padding: min(1em, 44px) 44px;
    margin: min(1em, 28px) auto;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 6px rgba(0,0,0,.2);
    -moz-box-shadow: 0 2px 6px rgba(0,0,0,.2);
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
    min-width: 320px;
    min-height: 300px;
    overflow: hidden;
    border-radius: 24px 4px;
}

.login-box .card {
    box-shadow: none;
}

.login-box .max-height {
    min-height: 150px;
    height: 65vh;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 500px;
}

.login-card-body, .register-card-body {
    padding: 20px 0;
}

.login-box .resend-code-link {
    color: #1f1f1f;
    font-size: 1rem;
    text-decoration: underline;
}

.login-box button.resend-code-link {
    border: 0;
    padding: 0;
}

#choise_company {
	display: flex;
    flex-direction: column;
	position: relative;
	cursor: pointer;
    height: min(25vh, 307px);
    overflow-y: auto;
}

#choise_company label{
    min-height: 55px;
    position: relative;
}

#choise_company .checkmark{
    position: absolute;
    top: 0;
    left: 0;
    padding: 12px 20px;
    width: 100%;
    cursor: pointer;
    border-radius: 9px;
}

/* Hide the browser's default checkbox */
#choise_company input {
	position: absolute;
	opacity: 0;
	height: 0;
	width: 0;

}

#choise_company input:disabled ~ .checkmark {
	color: rgba(33, 37, 41, .6);
}

/* On mouse-over, add a grey background color */
#choise_company input:hover ~ .checkmark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
#choise_company input:checked ~ .checkmark {
	background-color: rgb(160, 218, 248);
}

/* Style the checkmark/indicator */
#choise_company .checkmark:after {
	top: 11px;
	width: 10px;
	height: 10px;
	background-color: #ffffff;
	border-radius: 2px;
}

#choise_company input:disabled ~ .checkmark::after {
    background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23a00" d="M15 20a1 1 0 0 0-1-1h-1v-2h4a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h4v2h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h7v-2h-7m-8-5V5h10v10H7m8.54-2.88L13.41 10l2.12-2.13l-1.41-1.41L12 8.59L9.88 6.46L8.47 7.87L10.59 10l-2.12 2.13l1.41 1.41L12 11.41l2.12 2.13l1.42-1.42Z"%2F%3E%3C%2Fsvg%3E');
    width: 30px;
    height: 30px;
    display: flex;
    display: inline-block;
    vertical-align: middle;
    background-position: center center;
    background-repeat: no-repeat;
    content: '';
    margin-left: 10px;
}
