@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

body {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	height: 100vh;
	overflow: hidden;
	background: url("../images/login_bg.png") no-repeat center center;
	background-size: cover;
	/* backdrop-filter: blur(7px); */
}

* {
	font-family: "Poppins", sans-serif;
	text-decoration: none;
	font-weight: bold;
	color: #363636;
}

.container {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
}

.content {
	margin: 0 auto;
	width: 350px;
	height: 440px;
	display: flex;
	/* box-shadow: 2px 2px 10px grey; */
	border-radius: 5px;
}

.banner {
	display:none;
	height: 100%;
	width: 350px;
	background:inherit;
	border-radius: 5px 0 0 5px;
}

@media (max-width: 599px){
	
	.content {
		margin: 0 auto;
		width: 300px;
		height: 440px;
		display: flex;
		/* box-shadow: 2px 2px 10px grey; */
		border-radius: 20px;
	}
	.banner {
		display:none;
		height: 100%;
		width: 300px;
		background:inherit;
		border-radius: 20px 0 0 20px;
	}

}

.banner * {
	margin: 30px;
	margin-top: 60px;
	color: #ccc;
}

.form {
	height: 100%;
	width: 350px;
	background:inherit;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 0 5px 5px 0;
	position: relative;
}

.img {
	margin: 15px 0 15px;
	width: 40%;
	border-radius: 50%;
}

p,
a {
	font-size: small;
	color: #585858;
}
a:hover{
	
	color: #000;
}
#r {
	position: absolute;
	bottom: 20px;
}

input {
	margin-bottom: 10px;
	opacity: 1;
}

input[type="email"],
input[type="text"],
input[type="password"] {
	padding: 20px;
    width: 212px;
    height: 60px;
    border: 2px solid #ccc;
    color: #000;
    font-weight: bold;
    border-radius: 5px;
    line-height: 1.6;
}


::-ms-reveal {
	filter: invert(100%);
}

.button {
	margin-left: 10%;
	margin-right: 10%;
	width: 80%;
	height: 50px;
	border: 2px solid #000000;
	/* background: #222; */
	/* color: #fff; */
	cursor: pointer;
	border-radius: 5px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
		rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.width100{
	width: 100% !important;
}

.button:hover {
	background: #1b4b82;
	color: #fff;
	box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
}
.button:active {
	transform: scale(0.9);
	box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
}
.logo_img{
	display: block;
	width:70%;
	margin-top:5px
}
@media (max-width: 720px) {
	.banner {
		display: none;
	}
	.content {
		display: flex;
		justify-content: center;
	}

	.form {
		border-radius: 20px;
	}
	.logo_img{
		display: block;
		width:70%;
		margin-top:20px
	}
	.img {
		margin: 20px 0 20px;
		width: 40%;
		border-radius: 50%;
	}
}

.width80{
	width:80% !important
}
::placeholder {
  color: #ccc;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #ccc;
}

::-ms-input-placeholder { /* Microsoft Edge */
 color: #ccc;
}
input::placeholder {
    font-weight: bold;
    opacity: 0.5;
    color: #181818;
}
.side_text{
  line-height: 150%;
  color: #000;

}

.form-control:focus {
    border: 2px solid #ccc !important;
}
