:root {
	--teal: #64959b;
	--gold: #e4a842;
	--dark: #2f3e40;
	--light-bg: #f4f7f8;
}

* {
	box-sizing: border-box;
	font-family: "Segoe UI", Tahoma, sans-serif;
}

body {
	margin: 0;
	min-height: 100vh;
	background: linear-gradient(135deg, #e9f1f2, #fdfefe);
	display: flex;
	align-items: center;
	justify-content: center;
}

.card {
	background: #ffffff;
	width: 100%;
	max-width: 420px;
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.card-header {
	background: linear-gradient(135deg, var(--teal), #4f7f84);
	padding: 24px;
	text-align: center;
	color: white;
}

.card-header h2 {
	margin: 0;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.card-body {
	padding: 28px;
}

label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	color: var(--dark);
	font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="password"],
select {
	width: 100%;
	padding: 12px 14px;
	border-radius: 10px;
	border: 1px solid #dce4e6;
	font-size: 14px;
	background: #fafcfc;
	transition: all 0.3s ease;
}

input::placeholder {
	color: #9aa9ac;
}

input:focus,
select:focus {
	outline: none;
	border-color: var(--teal);
	box-shadow: 0 0 0 3px rgba(100, 149, 155, 0.2);
	background: #fff;
}

.form-group {
	margin-bottom: 18px;
}

button {
	width: 100%;
	padding: 14px;
	border-radius: 12px;
	border: none;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	background: linear-gradient(135deg, var(--gold), #d89b34);
	color: #3a2a00;
	box-shadow: 0 10px 20px rgba(228, 168, 66, 0.35);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

button:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(228, 168, 66, 0.45);
}

button:active {
	transform: translateY(0);
	box-shadow: 0 8px 16px rgba(228, 168, 66, 0.35);
}

.footer-note {
	text-align: center;
	font-size: 12px;
	color: #8a9ea2;
	padding: 14px 0 4px;
}

.toast {
	position: fixed;
	bottom: 30px;
	right: 30px;
	min-width: 260px;
	padding: 16px 20px;
	border-radius: 14px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
	transition: all 0.4s ease;
	z-index: 9999;
}

.toast.show {
	opacity: 1;
	transform: translateY(0);
}

.toast.success {
	background: linear-gradient(135deg, #64959b, #4f7f84);
}

.toast.error {
	background: linear-gradient(135deg, #d9534f, #b52b27);
}

@media (max-width: 480px) {
	.card {
		margin: 16px;
	}
}
