:root {
	--main-col-: #1e73d8;
	--main-drk: #1c274c;
}

/* Background */

.form_content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
	gap: 20px;
}

/* Logo */

.login_logo img {
	width: 90px;
	height: 90px;
	border-radius: 50%;
}

/* Login Card */

.Login_box {
	padding: 35px;
	display: flex;
	max-width: 360px;
	width: 100%;
	flex-direction: column;
	gap: 20px;
	background-color: #e9e9e9;
	align-items: center;
	border-radius: 12px;
	box-shadow: 0px 10px 25px rgba(0,0,0,0.2);
}

/* Title */

.text_center {
	text-align: center;
}

.brand_name {
	font-size: 22px;
	color: #333;
}

/* Form */

form {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
}

/* Inputs */

input#username,
input#password {
	width: 100%;
	padding: 12px;
	background: #ffffff;
	border: 1px solid #ccc;
	border-radius: 6px;
	outline: none;
}

input::placeholder {
	color: #666;
}

/* Button */

button {
	background-color: var(--main-col-);
	color: #fff;
	padding: 12px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	font-weight: 600;
	width: 100%;
}

button:hover {
	background: #155db3;
}

/* Toggle */

.field-wrapper.toggle-pass {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
}

/* Mobile */

@media only screen and (max-width: 410px) {

	.Login_box {
		margin: 10px;
		padding: 25px;
	}

	.brand_name{
		font-size:18px;
	}
}