body {
	margin: 0;
}
a {
	text-decoration: none;
}
.image {
	height: 100vh;
	display: block;
	width: 30%;
	float: left;
	background: linear-gradient(140deg,rgba(0,72,114,.9) 0%,rgba(41,17,96,.8) 100%),url('../includes/it-header.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: none;
	font-family: 'Share Tech', sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
}
.image h1 {
	color: white;
	font-size: 2.5em;
	text-align: center;
}
.image p {
	color: white;
	text-align: center;
	width: 80%;
	display: block;
	margin: 0 auto;
}
.image img {
	width: 50px;
	margin-bottom: -10px;
}
.login {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70%;
	position: relative;
	float: left;
	font-family: 'Montserrat', sans-serif;
	height: 100vh;
}
.login .column {
	margin-left: 20px;
	display: block;
	width: 70%;
}
.login img {
	max-width: 150px;
	margin: 25px 0;
}
.login h2, .login p {
	font-size: 16px;
	font-weight: 500;
	margin: 3px 0;
	color: #495057;
}
.login .form {
	margin: 20px 0 5px 0;
	border-top: #e9ecef 1px solid;
	border-bottom: #e9ecef 1px solid;
}
.login .form p {
	margin: 0px 0 7px 0;
}
.login .form .flexbox {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 15px 0;
}
.login .form .flexbox .input {
	width: 95%;
	margin-right: 15px;
}
.login .form .flexbox .input input {
	width: 92%;
	display: block;
	padding: .375rem .75rem;
	font-size: 1rem;
	margin: 3px 0;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition-duration: 150ms;
}
.login .form .flexbox .input input:focus {
	color: #495057;
	background-color: #fff;
	border-color: #a9bcee;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}
.login .form .input[type=checkbox] {
	margin-bottom: 10px;
}
.login .form .input#old_helpdesk input[type=checkbox] {
	margin-bottom: 15px;
}
.login .actions {
	float: right;
}
.login .actions span {
	margin: 10px;
	padding: 0;
	font-size: 13px;
	cursor: pointer;
	text-decoration: none;
	transition-duration: 150ms;
	color: #3f6ad8;
}
.login .actions span:hover {
	text-decoration: underline;
}
.login .actions button {
	color: #fff;
	background-color: #3f6ad8;
	border: none;
	width: fit-content;
	border-radius: 5px;
	outline: none;
	margin: 10px;
	padding: 11px 18px;
	font-weight: 700;
	cursor: pointer;
	transition-duration: 150ms;
}
.login .form label p {
	font-size: 12px;
}
.login .form label span {
	font-size: 13px;
}
.login .actions button:hover {
	background: #2955c8;
}
.login button#submit i.fas.fa-spinner {
	opacity: 0;
	-webkit-animation:spin 1s linear infinite;
	-moz-animation:spin 1s linear infinite;
	animation:spin 1s linear infinite;
	position: absolute;
}
button span {
	color: white !important;
	text-decoration: none !important;
}
.login .actions button.disabled {
	background-color: #707070;
}
section#notifications {
	display: block;
	position: absolute;
	top: 5px;
	z-index: 99999;
	right: 0;
}

section#notifications .notification {
	background: #222222;
	color: white;
	border-radius: 3px;
	margin: 5px;
	display: flex;
	align-items: center;
	padding: 10px 0;
	width: 350px;
	font: 0.95em Verdana;
}

section#notifications .notification .notification_icon {
	padding: 0 10px;
}

section#notifications .notification .notification_icon.failed {
	color: tomato;
}

section#notifications .notification .notification_icon.ok {
	color: #9CD13A;
}

section#notifications .notification .notification_icon.information {
	color: #40A6CE;
}

section#notifications .notification .notification_icon.warning {
	color: #ec942c;
}

section#notifications .notification .notification_text {
	width: 100%;
	margin: 0;
}

section#notifications .notification button.notification_close {
	background: none;
	outline: none;
	color: #ababab;
	border: none;
	cursor: pointer;
	font-size: 12px;
	padding: 4px 7px;
	margin-right: 8px;
	height: fit-content;
	border-radius: 2px;
}


section#notifications .notification button.notification_close:hover {
	background: #373737;
}

h2.bold {
    font-weight: 600;
}
.h2-icon {
    font-size: 15px;
    margin-left: 3px;
}

h1 {
    margin: 25px 0 15px 0;
}





/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

.remember_switch {
    display: flex;
    margin: 40px 0 0 0;
}
.remember_switch p {
    font-size: 14px;
}
.remember_switch label.switch {
    margin-right: 10px;
}

.qr_code {
    margin: 10px 0 !important;
}

.ga_input {
	display: flex;
	margin-top: 25px;
}
.ga_input_field {
	width: 40px;
	height: 50px;
	border-radius: 10px;
	border: 1px solid gray;
	margin-right: 7px;
	text-align:center
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

p.text_instruction {
	margin-top: 25px;
	font-size: 15px;
}

.forgot {
	margin-top: 6px;
	position: absolute;
}
.forgot p a {
	color: #3f6ad8;
	font-size: 14px;
}

.forgot p a:hover {
	text-decoration: underline;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
@media(max-width: 1000px) {
	.image {
		display: none;
	}
	.login {
		width: 100%;
	}
}
@media(max-width: 700px) {
	.login .column {
		width: 95%;
	}
}
@media(max-width: 400px) {
	.login .form .flexbox {
		display: block;
	}
	.login .form .flexbox .input {
		margin: 10px 0;
	}
}