@import url("form.css");

@import url("button.css");

/* Body
================================================== */
html, body {
	height: 100%;
}

body {
	font-family: 'Arial', sans-serif;
	background: linear-gradient(120deg, #f19961, #2c4f8a);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
}

.login-container {
	background-color: #ffffff;
	padding: 1.5rem;
	border-radius: 12px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 28%;
	text-align: center;
}

.logo-container {
	margin-bottom: 1.5rem;
}

.logo {
	max-width: 48%;
}

.login-form h2 {
	/* margin-bottom: 1.5rem; */
	color: #333;
	font-size: 21px;
}

.input-group {
	margin-bottom: 1.2rem;
	text-align: left;
}

.input-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #333;
	font-weight: bold;
	font-size: 16px;
}

.input-group input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccd1d9;
	border-radius: 6px;
	font-size: 1rem;
	transition: border-color 0.3s;
}

.input-group input:focus {
	outline: none;
	border-color: #007bff;
}

.options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.remember-me {
	display: flex;
	align-items: center;
}

.remember-me input {
	margin-right: 0.5rem;
}

.forgot-password a {
	color: #007bff;
	text-decoration: none;
	font-size: 15px;
}

.forgot-password a:hover {
	text-decoration: underline;
}

.login-button {
	background-color: #007bff;
	color: #ffffff;
	padding: 12px 0px;
	border: none;
	border-radius: 6px;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s;
	width: 100%;
	margin-bottom: 5%;
}

.login-button:hover {
	background-color: #0056b3;
}

.error-message {
    color: red;
    word-wrap: break-word;
    display: block;
	font-size: 15px;
	margin-bottom: 5%;
}

