﻿/* LOGIN, LOCKSCREEN, & REGISTER */
.authentication .outer {
	display: table;
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('../../../Assets/images/Bilka_background2_2560x1440px.jpg') no-repeat center center;
	background-size: cover;
}

.authentication .middle {
	display: table-cell;
	vertical-align: middle;
}

.authentication .login .inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 400px;
}

.authentication .register .inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 800px;
}

.authentication .account-wall {
	padding: 30px 50px 15px 50px;
	background-color: #fff;
	-moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.authentication .register .account-wall {
    padding: 10px 50px 10px 50px;
}

.authentication .logo {
	padding: 0 20px 20px 20px;
    text-align: center;
}

.poweredByAunetic {
	display: flex;
	align-items: flex-end;
	gap: 0.5rem;
	margin-top: 0.75rem;

	span {
		font-size: 70%;
		color: black;
	}

	.poweredByAunetic-logo-container {
		display: flex;
		height: 20px;
		width: 120px;
		gap: 0.5rem;
	}
}

.authentication .logo img {
    padding: 0 0 0 0;
}

.authentication .form-login {
	max-width: 330px;
	padding: 5px 0 5px 0;
	margin: 0 auto;
}

.authentication .form-login .form-control {
	position: relative;
	height: auto;
	padding: 8px 12px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.authentication .form-login .form-control:focus {
	z-index: 2;
}

.authentication .form-login .form-control.small {
	width: 50%;
	float: left;
}

.authentication .form-login button {
	margin-top: 10px;
    padding: 8px 12px;
}

.authentication .form-login .form-login-heading, .form-login .checkbox {
    padding-top: 5px;
	margin-left: 20px;
}

.authentication .form-login .checkbox {
	font-weight: 300;
}

.authentication .mar-btm {
    max-width: 300px;
    text-align: center;
	margin: 0 auto;
    position: relative;
    z-index: 1;
}

.authentication .mar-btm:before {
    border-top: 1px solid #dfdfdf;
    content: "";
    margin: 0 auto;
    /* this centers the line to the full width specified */
    position: absolute;
    /* positioning must be absolute here, and relative positioning must be applied to the parent */
    top: 45%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

.authentication .mar-btm span {
  /* to hide the lines from behind the text, you have to set the background color the same as the container */
  background: #fff;
  padding: 0 15px;
}

.authentication .login .info {
    max-width: 300px;
    text-align: center;
	margin: 0 auto;
}

.authentication .login .alert {
    max-width: 300px;
	margin: 0 auto 10px auto;
    padding: 15px 35px 10px 40px;
}

.authentication .alert-info::before,
.authentication .alert-success::before,
.authentication .alert-warning::before,
.authentication .alert-danger::before {
    margin: -8px 15px -15px -60px;
}

.authentication .account-actions {
    margin: 5px 0;
}

/* sms code confirmation */
#enter-verification-code-section .logo {
    padding: 0px;  

}