body {
	font-family: "Fira Sans", sans-serif;
	background:  #f1f5f8;
	/*background: transparent;*/
}

/*resets*/
.background-page input[type="text"],
.background-page input[type="password"] {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.background-page input[type="text"]:focus,
.background-page input[type="password"]:focus {
	border-color: transparent;
	box-shadow: none;
	outline: none;
}

.background-page input[type="text"]:focus,
.background-page input[type="password"]:focus {
	border-color: transparent;
}

.background-page *, ::after, ::before {
	box-sizing: border-box;
}
/***/

.logo-container {
	position: absolute;
	left: 30px;
	top: 30px;
}

.background-page {
	position: relative;
	overflow: hidden;
	height: 100vh;
}

.login-container {
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.login-form > div:nth-child(1) {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.login-form > div:nth-child(2){
	display: flex;
	flex-direction: column;
	border-top: 1px solid #dee2e6;
}

.background-page:before {
	background-image: url("..https://mail.penki.lt/icons/pattern.png");
	content: "";
	position: absolute;
	width: 200%;
	height: 200%;
	top: -50%;
	left: -50%;
	z-index: -1;
	transform: rotate(15deg);
}

.login-form {
	position: relative;
	width: 400px;
	box-shadow: 0 0 20px 5px rgba(12, 49, 78, 0.05);
	border-radius: 15px;
	padding: 40px 0;
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
}

.login-form > div {
	padding: 0 40px;
}

.login-form h1 {
	margin-top: 0px;
	margin-bottom: 24px;
	font-size: 23px;
	font-weight: 100;
	color: #65696e;
	font-weight: 300;
}

.login-form p {
	line-height: 1.3;
	color: #65696e;
	font-size: 13px;
	text-align: justify;
	margin-top: 0;
	font-weight: 500;
}

.login-form p:last-child {
	font-weight: 300;
	margin-bottom: 0;
}

.login-form .button-login {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 0;
	height: 50px;
	width: 100%;
	margin-bottom: 40px;
	background: #4ac6f4;
	background: -moz-linear-gradient(left, #4ac6f4 0%, #00aeef 100%);
	background: -webkit-linear-gradient(left, #4ac6f4 0%, #00aeef 100%);
	background: linear-gradient(to right, #4ac6f4 0%, #00aeef 100%);
	/*progid: DXImageTransform.Microsoft.gradient(startColorstr= "#4ac6f4", endColorstr= "#00aeef", GradientType=1);*/
	box-shadow: 0 0 20px 5px rgba(27, 117, 188, 0.14);
	border-radius: .25rem;
	transition: all .15s ease-in-out;
}

.login-form .button-login input {
	cursor: pointer;
	line-height: 1.5;
	width: 100%;
	height: 100%;
	background: transparent;
	color: #ffffff;
	border: 0;
	text-transform: uppercase;
	font-size: 0.9rem;
	font-weight: 400;
}

.login-form .button-login:before {
	content: "";
	border-radius: .25rem;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	/*mygtuko hover spalva*/
	background: #00aeef;
	transform: scaleX(0);
	transform-origin: 0 50%;
	transition: transform 0.6s ease-out;
}

.login-form .button-login:hover:before {
	transform: scaleX(1);
}

.login-form .link-forget {
	margin-bottom: 20px;
	color: #1b75bc;
	font-size: 13px;
}

.login-form .icon-alert-container {
	margin-bottom: 20px;
	margin-top: 20px;
	text-align: center;
}

.login-form .icon-alert-container img {
	width: 50px;
	height: auto;
}

.input-container {
	position: relative;
	padding: 0;
	margin: 0;
}

.input-container input {
	display: block;
	height: 50px;
	margin-bottom: 20px !important;
	padding: 15px 15px 15px 60px !important;
	font-size: 15px;
	background-color: #fbfdfe;
	color: #a4a9b1;
	width: 100%;
	line-height: 1.5;
	background-clip: padding-box;
	border: 1px solid #e3e7f1 !important;
	border-radius: 0.25rem !important;
	transition: all 0.15s ease-in-out;
}

.input-container input:focus {
	color: #65696e;
	outline: none !important;
	box-shadow: 0 0 20px 2.5px rgba(27, 117, 188, 0.07) !important;
}

.input-container input::placeholder {
	font-size: 15px;
	font-weight: 300;
	color: #aaa;
}

.input-container img {
	position: absolute;
	top: 15px;
	left: 0px;
	padding: 0 15px;
	border-right: 1px solid #e3e7f1;
	height: 20px;
}

.text-center {
    text-align: center;
}

.box-bottom {
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;

	/*display: flex;*/
	/*justify-content: center;*/
	/*text-align: center;*/
	/*left: 20px;*/
	/*margin-top: 10px;*/
	/*margin-bottom: 10px;*/
}

#message {
	text-align: center;
}