/*FORM LOGIN*/
.form-login{
    background-color: 202528 !important;
}
.font-kristta{
    color: #FF6F00;
}

.checkbox[type=checkbox]{
	height: 0;
	width: 0;
	visibility: hidden;
}

.checkbox-label {
	cursor: pointer;
	text-indent: -9999px;
	width: 40px;
	height: 20px;
	background: grey;
	display: block;
	border-radius: 25px;
	position: relative;
}

.checkbox-label:after {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 90px;
	transition: 0.3s;
}

.checkbox:checked + label {
	background: #FF6F00;
}

.checkbox:checked + label:after {
	left: calc(100% - 0px);
	transform: translateX(-100%);
}

.checkbox-label:active:after {
	width: 5px;
}

@media screen and (max-width: 768px) {
    .login-box{
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .login-box form{
        width: 100vw;
        height: 100vh;
        border: none !important;
        border-radius: 0 !important;
        padding: 2rem !important;
        padding-top: 3rem !important;
        margin: 0 !important;
    }
}
