/* Reset */
html {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Body styling */
body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: #eaf6f9;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

/* Container */
.container {
	background: white;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	max-width: 450px;
	width: 100%;
	animation: slideUp 0.5s ease-out;
}

/* ? Fixed keyframes */
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Logo section */
.logo {
	text-align: center;
	margin-bottom: 30px;
}

.logo-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: rgba(200, 230, 230);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 10px 10px rgba(102, 126, 234, 0.3);
}

.logo-icon svg {
	width: 50px;
	height: 50px;
	fill: white;
}

/* Headings */
h1 {
	color: rgb(0, 128, 255);
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 10px;
	text-align: center;
}

h2 {
	color: #4a5568;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 30px;
	text-align: center;
}

/* Form styling */
.form-group {
	margin-bottom: 20px;
}

label {
	display: block;
	color: rgb(0, 128, 255);
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

input {
	width: 92%;
	padding: 15px;
	border: 2px solid #e2e8f0;
	border-radius: 10px;
	font-size: 16px;
	transition: all 0.3s ease;
	background: #f7fafc;
}

input:focus {
	outline: none;
	border-color: #667eea;
	background: white;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

input.error {
	border-color: #f56565;
}

/* Button */
button {
	width: 100%;
	padding: 15px;
	background: #4197cb;
	color: white;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

button:active {
	transform: translateY(0);
}

.register-link {
	display: flex;
	justify-content: center;
	align-items: center;
}

.register-link a {
	width: 50%;
	padding: 10px;
	background: rgba(128, 80, 128, 0.8);
	color: white;
	border: none;
	border-radius: 10px;
	font-size: 10px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
}

a:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

a:active {
	transform: translateY(0);
}
