@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
	--bg: #f4f7fb;
	--card-bg: #ffffff;
	--primary: #00bfff;
	--primary-hover: #00678a;
	--text: #1e293b;
	--muted: #64748b;
	--error: #dc2626;
	--border: #dbe3ee;
	--shadow: 0 10px 30px rgba(0,0,0,0.08);
	--radius: 18px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background: linear-gradient(135deg, #eef4ff 0%, #f9fbff 100%);
	color: var(--text);
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px;
}

/* Container */
.download-box {
	background: var(--card-bg);
	width: 100%;
	max-width: 460px;
	padding: 40px;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	text-align: center;
	border: 1px solid var(--border);
	animation: fadeIn 0.4s ease;
}

/* Logo */
.logo {
	background-image: url("../img/sharefile.png") !important;
	background-position: center;
	background-size: 70%;
	background-repeat: no-repeat;
	width: 72px;
	height: 72px;
	margin: 0 auto 20px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 1px;
	box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);

}

/* Headline */
h2 {
	font-size: 24px;
	margin-bottom: 18px;
	color: var(--text);
	line-height: 1.4;
}

/* Error Message */
.error-message {
	background: #fee2e2;
	color: var(--error);
	border: 1px solid #fecaca;
	padding: 12px 14px;
	border-radius: 12px;
	margin-bottom: 22px;
	font-size: 14px;
	font-weight: 500;
}

/* Form */
form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Input */
input[type="password"] {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--border);
	border-radius: 12px;
	font-size: 15px;
	transition: all 0.2s ease;
	outline: none;
}

input[type="password"]:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

/* Button */
button {
	background: var(--primary);
	color: white;
	border: none;
	padding: 14px 18px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

button:hover {
	background: var(--primary-hover);
	transform: translateY(-1px);
}

button:active {
	transform: scale(0.98);
}

/* Animation */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 520px) {
	.download-box {
		padding: 28px;
	}

	h2 {
		font-size: 20px;
	}
}