* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

main {
  width: 50%;
  max-width: 360px;   
  background: rgba(220, 220, 220, 0.95); 
  padding: 30px;
  border-radius: 12px;
  margin-top: 200px;  
  margin-bottom: 60px;  
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

body {
font-family:'Inter',Arial,sans-serif;
  min-height: 100vh;
  background: url("forgot.jpg") no-repeat center top;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: flex-start;  
  padding-top: 140px; 
}

h1 {
	text-align: center;
	margin-bottom: 30px;
	color: #000000;
	font-size: 28px;
	font-weight: 600;
}

form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

form > div {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

label {
	font-weight: 500;
	color: #374151;
	font-size: 14px;
}

input[type="email"] {
	padding: 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 14px;
	transition: border-color 0.2s;
}

input[type="email"]:focus {
	outline: none;
	border-color: #ff8ee3ff;
}

#error {
	color: #dc2626;
	font-size: 14px;
	min-height: 20px;
	padding: 8px;
	background: #fee2e2;
	border-radius: 4px;
	display: none;
}

#error:not(:empty) {
	display: block;
}

#success {
	color: #065f46;
	font-size: 14px;
	min-height: 20px;
	padding: 8px;
	background: #d1fae5;
	border-radius: 4px;
	display: none;
}

#success:not(:empty) {
	display: block;
}

button[type="submit"] {
	padding: 12px;
	background: #ff8ee3ff;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s;
}

button[type="submit"]:hover:not(:disabled) {
	background: #000000;
}

button[type="submit"]:active:not(:disabled) {
	background: #000000;
}

button[type="submit"]:disabled {
	background: #000000;
	cursor: not-allowed;
}

p {
	text-align: center;
	margin-top: 20px;
}

a {
	color: #667eea;
	text-decoration: none;
	font-size: 14px;
}

a:hover {
	text-decoration: underline;
}
