@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

body {
	margin: 0;
	padding: 0;
}

input:focus, button:focus, .custom-file {
	box-shadow: none!important;
	outline: none!important;
}

#form_col {
	border-radius: 5px;
	padding: 20px;
}

hr {
	width: 80%;
}

#main {
	height: 100vh;
	width: 100vw;
	background-color: #E8ECFB;
	display: flex;
	justify-content: center;
	align-items: center;
}

.form_container {
	width: 100%;
	max-width: 500px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 15px;
}

.form_row {
	display: flex;
	justify-content: center;
	align-items: center;
}

#btn_login {
	background-color: #272A2E;
	color: white;
	font-family: 'Poppins', sans-serif;
	border: none;
}

#btn_login span {
	color: white;
}

/* Responsive adjustments for better scaling */
@media only screen and (max-width: 600px) { /* Smartphone */
	#form_col {
		width: 90%;
		padding: 15px;
	}
	#btn_login {
		font-size: 14px;
		padding: 10px;
	}
	h3 {
		font-size: 20px;
	}
}

@media only screen and (min-width: 601px) and (max-width: 768px) { /* Tablet */
	#form_col {
		width: 80%;
	}
	#btn_login {
		font-size: 16px;
		padding: 12px;
	}
	h3 {
		font-size: 22px;
	}
}

@media only screen and (min-width: 769px) and (max-width: 1024px) { /* Laptop */
	#form_col {
		width: 70%;
	}
	#btn_login {
		font-size: 18px;
		padding: 14px;
	}
	h3 {
		font-size: 24px;
	}
}

@media only screen and (min-width: 1025px) { /* Desktop */
	#form_col {
		width: 50%;
	}
	#btn_login {
		font-size: 20px;
		padding: 16px;
	}
	h3 {
		font-size: 26px;
	}
}