/** @format */
.logins_form {
	background-color: white;
	padding: 50px;
	border-radius: 20px;
}

.login_input {
	border: none;
	outline: none;
	border-bottom: solid rgba(91, 152, 202, 0.144) 0.2px;
	margin: 10px auto;
	padding: 10px 20px;
	border-radius: 20px;
}

.login_submit {
	border: none;
	outline: none;
	background-color: var(--primary-color);
	padding: 10px 35px;
	border-radius: 5px;
	/* cursor: pointer; */
	color: white;
}

.login_header {
	text-align: center;
	margin-bottom: 20px;
	margin: 20px auto;
	margin-top: 30vh;
}

.login_header h2 {
	/* border-bottom: solid rgba(91, 152, 202, 0.144) 0.2px; */
	color: var(--primary-color);
}

.logins_out {
	position: absolute;
	/* background-color: var(--primary-color); */
	right: 150px;
	top: 0px;
	text-align: right;
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100px;
	padding: 20px;
	font-weight: bolder;
	color: var(--primary-color);
}

.logo {
	position: fixed;
	top: 0px;
	left: 20px;
	width: 80px;
	z-index: 200;
}

.logo img {
	width: 100%;
}

.blue {
	display: none;
}

.white {
	display: block;
}

@media screen and (max-width: 756px) {
	.logins_out {
		right: 20px;
	}

	.logins_form {
		background-color: white;
		padding: 20px;
		border-radius: 20px;
	}

	.login_input {
		margin: 10px auto;
		padding: 10px 20px;
		border-radius: 10px;
		width: 90%;
	}

	.logo {
		position: absolute;
		width: 60px;
	}

	.blue {
		display: block;
	}

	.white {
		display: none;
	}
}