@charset "UTF-8";
body * {
	box-sizing: border-box;
}

body {
	background: #e6e6e6;
	letter-spacing: 0.1rem;
}

:hover {
	transition: 0.3s all;
}

h1 {
	font-size: 20px;
}
p {
	margin: 40px auto;
}

hr {
	margin: 30px auto 40px;
	width: 100%;
}

a {
	color: #b3b3b3;
}

a:hover {
	color: #8a8a8a;
}

.wrap {
	overflow: hidden;
	position: relative;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.container {
	width: 100%;
	max-width: 460px;
	height: 530px;
	background-color: #fff;
	padding: 3rem;
	margin: 1.5rem;
	box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-content: center;
	flex-wrap: nowrap;
}

button {
	display: inline-block;
	line-height: 2.5;
	text-decoration: none;
	border: none;
	background-color: initial;
	background-image: url("../img/btn-login.png");
	background-repeat: no-repeat;
	background-size: contain;
	width: 147px;
	height: 56px;
	color: #fff;
	padding: 0 1rem 1rem;
	font-weight: bold;
}
button:hover {
	opacity: 0.8;
}

.form-control {
	/* display: block; */
	width: 100%;
	padding: 0.375rem 0.75rem;
	margin: 0.75rem 0 0;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #000;
	border-radius: 0;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.forget_container {
	width: 100%;
	max-width: 460px;
	background-color: #fff;
	padding: 3rem;
	box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3);
	text-align: center;
}
#forget_form-control{
	padding: 0.375rem 0.75rem;
	margin: 0.75rem 0 0;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #000;
	border-radius: 0;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.forget_button{
	line-height: 2.3;
	width: 6em;
	height: 2.3em;
	padding: 0 1rem 1rem;
	font-weight: bold;
	background-color: #415BA2;
    color: white;
}
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear,
input[type="password"]::-webkit-contacts-auto-fill-button,
input[type="password"]::-webkit-credentials-auto-fill-button {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
}