@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap");

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Outfit', sans-serif;
}

body {
	background: #f3f4f6;
	/* Clean light gray background */
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	width: 100%;
}

.screen {
	background: #ffffff;
	position: relative;
	/* height: 600px; Remove fixed height */
	width: 400px;
	/* Slightly wider */
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	/* Soft shadow */
	border-radius: 20px;
	overflow: hidden;
	padding: 40px;
}

/* Remove old complex shapes */
.screen__background {
	display: none;
}

.screen__content {
	z-index: 1;
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.login {
	width: 100%;
	padding: 0;
	padding-top: 0;
	/* Updated padding */
}

/* Add a logo or title area style if needed, or just style the form */

.login__field {
	padding: 15px 0px;
	position: relative;
	width: 100%;
}

.login__icon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #008BFF;
	left: 15px;
	z-index: 2;
}

.login__input {
	border: 1px solid #e5e7eb;
	background: #f9fafb;
	padding: 15px;
	padding-left: 45px;
	/* Space for icon */
	font-weight: 500;
	width: 100%;
	transition: .2s;
	border-radius: 10px;
	color: #1f2937;
	font-size: 15px;
}

.login__input:active,
.login__input:focus,
.login__input:hover {
	outline: none;
	border-color: #008BFF;
	background: #fff;
	box-shadow: 0 0 0 3px #E6F4FF;
}

.login__submit {
	background: #008BFF;
	/* Green primary */
	font-size: 16px;
	margin-top: 30px;
	padding: 15px 20px;
	border-radius: 10px;
	border: none;
	text-transform: uppercase;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	color: #fff;
	box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.4);
	cursor: pointer;
	transition: .3s;
	gap: 10px;
}

.login__submit:active,
.login__submit:focus,
.login__submit:hover {
	background: #00559b;
	outline: none;
	transform: translateY(-2px);
	box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
}

.button__text {
	color: #fff;
}

.button__icon {
	font-size: 18px;
	margin-left: 0;
	color: #fff;
}

.error {
	color: #ef4444;
	/* Red 500 */
	background: #fef2f2;
	padding: 10px;
	border-radius: 8px;
	font-size: 14px;
	margin-top: 10px;
	width: 100%;
	text-align: center;
	border: 1px solid #fee2e2;
}