@charset "utf-8";
/* CSS Document */

/* ===== Global Styles ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: white;
	color: #333;
	font-family: 'Roboto', Arial, sans-serif;
	line-height: 1.6;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	font-weight: 400;
}

.container {
	width: 90%;
	max-width: 600px;
	margin: 0 auto;
	padding: 0 20px;
	flex: 1;
}

.box {
	width: 100%;
	padding: 40px;
	border-radius: 4px;
}

.title {
	font-size: 26px;
	margin-bottom: 25px;
	text-align: center;
	font-weight: 500;
	color: #000;
	letter-spacing: 0.3px;
}

p {
	color: #555;
	font-size: 16px;
	line-height: 1.5;
}

a {
	text-decoration: none;
	color: #000;
}

/* ===== Header Logo Styles ===== */
.site-header {
	padding: 15px 20px 5px;
}

.logo-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.logo {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: #000;
	font-family: 'Roboto', sans-serif;
}

.logo-link:hover {
	color: #000;
	text-decoration: none;
}

/* ===== Form Styles ===== */
form {
	padding-top: 30px;
}

.form-group {
	margin-bottom: 30px;
	position: relative;
}

.form-label {
	display: block;
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 500;
	color: #444;
}

.form-input {
	width: 100%;
	padding: 14px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 15px;
	height: 50px;
	font-family: 'Roboto', sans-serif;
	color: #333;
}

.form-input::placeholder {
	color: #999;
	font-weight: 300;
}

.form-textarea, .form-select {
	width: 100%;
	padding: 14px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
	color: #333;
	font-weight: 300;
}

.form-textarea {
	min-height: 200px;
	resize: vertical;
	height: auto;
}

.form-select {
	background-color: white;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.form-select option:first-child {
            color: #999;
            font-weight: 300;
        }

.form-input:focus, .form-textarea:focus, .form-select:focus {
	border-color: #000;
	outline: none;
	transition: border-color 0.3s;
}

/* ===== Password visibility toggle ===== */
.toggle-password {
	position: absolute;
	right: 15px;
	top: 42px;
	cursor: pointer;
	color: #777;
	font-size: 20px;
	user-select: none;
}

/* ===== Button Styles ===== */
button {
	width: 100%;
	padding: 16px;
	background-color: #000;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 17px;
	cursor: pointer;
	transition: opacity 0.3s;
	margin-top: 10px;
	height: 54px;
	font-weight: 500;
	letter-spacing: 0.5px;
}

button:hover {
	opacity: 0.8;
}

/* ===== Login Register Link Styles ===== */
.link {
	margin-top: 30px;
	text-align: center;
	font-size: 15px;
	color: #555;
}

.link a {
	color: #000;
	text-decoration: none;
	font-weight: 500;
}

.link a:hover {
	text-decoration: underline;
}

/* ===== Footer Styles ===== */
.site-footer {
	padding: 20px;
	text-align: center;
	font-size: 13px;
	color: #777;
	font-weight: 300;
}

.footer-links {
	margin-bottom: 10px;
}

.footer-links a {
	margin: 0 10px;
	color: #000;
	font-weight: 400;
}

.footer-links a:hover {
	text-decoration: underline;
	color: #000;
}

.copyright {
	color: #999;
}

/* ===== Notification ===== */


/* ===== Responsive Styles ===== */
@media only screen and (max-width: 768px) {
	/* Hide header on mobile */
	.site-header {
		display: none;
	}

	/* Hide footer on mobile */
	.site-footer {
		display: none;
	}
	.box {
		padding: 30px 20px;
	}
	.title {
		font-size: 24px;
	}
	.link {
		font-size: 14px;
	}
	.form-input {
		height: 48px;
		padding: 12px;
	}
	button {
		height: 50px;
		padding: 14px;
		font-size: 16px;
	}
}