:root {
	--accent-color: #2b6ef6;
}

body {
	font-family:
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		Oxygen,
		Ubuntu,
		Cantarell,
		"Open Sans",
		"Helvetica Neue",
		sans-serif;
	background-color: #f5f7fb;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	margin: 0;
}

form {
	position: relative;
	background: #ffffff;
	padding: 32px;
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	max-width: 360px;
}

h1 {
	margin: 0 0 8px 0;
	font-size: 24px;
	text-align: center;
	color: #1a1a1a;
}

input[type="email"] {
	padding: 12px 14px;
	border: 2px solid #e0e4eb;
	border-radius: 6px;
	font-size: 16px;
	outline: none;
	transition: border-color 0.2s;
}

input[type="email"]:focus {
	border-color: var(--accent-color);
}

button {
	padding: 12px;
	background-color: var(--accent-color);
	color: #ffffff;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	cursor: pointer;
	transition:
		background-color 0.2s,
		transform 0.1s;
}

button:hover {
	background-color: #1f5be0;
}

button:active {
	transform: scale(0.97);
}

label {
	font-size: 14px;
	color: #333;
}

#wrapContainer {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

#requiredStar {
	color: red;
}

.input-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.input-wrapper input {
	width: 100%;
	padding: 14px 14px 14px 14px;
	font-size: 15px;
	border-radius: 4px;
	border: 1px solid #dcdfe6;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	background-color: #f3f3f3;
	outline: none;
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
}

.input-wrapper input:focus {
	border-color: #2b6ef6;
	box-shadow: 0 0 0 3px rgba(43, 110, 246, 0.1);
}

#email-icon {
	width: 58px;
	height: 46px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: white;
	pointer-events: none;
	border: 1px solid #dcdfe6;
	border-radius: 4px;
	border-right: none;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
}

#phoneNumber {
	display: none;
}

#error-box,
#success-box {
	background: #ffdddd;
	color: #a00;
	padding: 10px;
	margin-bottom: 15px;
	border-left: 4px solid #a00;
	border-radius: 6px;
}
#success-box {
	background: #ddffdd;
	color: green;
	border-left: 4px solid green;
}

#password-icon {
	width: 58px;
	height: 46px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: white;
	pointer-events: none;
	border: 1px solid #dcdfe6;
	border-radius: 4px;
	border-right: none;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
}

#goBackBtn {
	position: absolute;
	top: 40px;
	left: 40px;
	width: auto;
}

#goBackBtn svg {
	color: black;
	transition: 0.2s;
}

#goBackBtn:hover svg {
	transform: translateX(-5px);
}
