@charset "UTF-8";

/* ================= GOOGLE FONT ================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: red !important;
}

html, body {
	width: 100%;
	min-height: 100%;
	font-family: 'Poppins', sans-serif;
}

/* ================= BACKGROUND ================= */
.auth-section {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 20px;
	background: linear-gradient(rgba(35, 22, 12, .65), rgba(35, 22, 12, .65)),
		url("../IMG/login_back.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* ================= MAIN CARD ================= */
.auth-card {
	width: 100%;
	max-width: 1100px;
	display: flex;
	border-radius: 25px;
	overflow: hidden;
	background: rgba(255, 248, 239, .95);
	box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
	animation: fadeIn .8s ease;
}

@
keyframes fadeIn {from { opacity:0;
	transform: translateY(40px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}

/* ================= LEFT PANEL ================= */
.left-side {
	width: 40%;
	background: linear-gradient(135deg, #7B3F00, #A0522D);
	color: white;
	padding: 50px 35px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.left-side img {
	width: 220px;
	margin-bottom: 25px;
	transition: .4s;
}

.left-side img:hover {
	transform: scale(1.08) rotate(-2deg);
}

.left-side h2 {
	font-family: 'Playfair Display', serif;
	font-size: 38px;
	margin-bottom: 15px;
}

.left-side span {
	color: #FFD56A;
}

.left-side p {
	line-height: 28px;
	font-size: 15px;
	opacity: .95;
}

/* ================= RIGHT PANEL ================= */
.right-side {
	width: 60%;
	padding: 45px;
}

.right-side h3 {
	text-align: center;
	font-size: 34px;
	color: #5a3112;
	margin-bottom: 30px;
	font-family: 'Playfair Display', serif;
}

/* ================= ROW ================= */
.row {
	display: flex;
	gap: 18px;
}

/* ================= INPUT BOX ================= */
.input-box {
	position: relative;
	flex: 1;
	margin-bottom: 18px;
}

.input-box i:first-child {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #B45F06;
	font-size: 17px;
}

.input-box input, .input-box select {
	width: 100%;
	height: 52px;
	border: none;
	border-radius: 12px;
	background: #FFF;
	border: 1px solid #d8b58d;
	padding-left: 48px;
	padding-right: 45px;
	font-size: 15px;
	transition: .3s;
}

.input-box input:focus, .input-box select:focus {
	outline: none;
	border-color: #C96A18;
	box-shadow: 0 0 12px rgba(201, 106, 24, .25);
}

/* ================= PASSWORD ================= */
.password-box {
	position: relative;
}

.toggle-password {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #B45F06;
}

/* ================= TERMS ================= */
.terms {
	margin: 10px 0 20px;
	font-size: 14px;
}

.terms a {
	color: #B45F06;
	text-decoration: none;
	font-weight: 600;
}

/* ================= BUTTON ================= */
.register-btn {
	width: 100%;
	height: 55px;
	border: none;
	border-radius: 12px;
	background: linear-gradient(135deg, #D2691E, #8B4513);
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	cursor: pointer;
	transition: .35s;
}

.register-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, .25);
}

/* ================= LOGIN ================= */
.login-link {
	text-align: center;
	margin-top: 20px;
	font-size: 15px;
}

.login-link a {
	color: #B45F06;
	text-decoration: none;
	font-weight: 600;
}

.login-link a:hover {
	text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media ( max-width :900px) {
	.auth-card {
		flex-direction: column;
	}
	.left-side, .right-side {
		width: 100%;
	}
	.left-side {
		padding: 35px;
	}
	.left-side img {
		width: 170px;
	}
	.right-side {
		padding: 30px;
	}
}

@media ( max-width :600px) {
	.row {
		flex-direction: column;
		gap: 0;
	}
	.left-side h2 {
		font-size: 30px;
	}
	.right-side h3 {
		font-size: 28px;
	}
	.right-side {
		padding: 22px;
	}
}
/* ===== Role Box ===== */
.role-box {
	display: flex;
	align-items: center;
	width: 100%;
	height: 52px;
	border: 1px solid #d8b58d;
	border-radius: 12px;
	background: #fff;
	padding-left: 48px;
	padding-right: 18px;
	transition: .3s;
	position: relative;
}

.role-box:focus-within, .role-box:hover {
	border-color: #C96A18;
	box-shadow: 0 0 12px rgba(201, 106, 24, .25);
}

.role-box i {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #B45F06;
	font-size: 17px;
}

.role-content {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.role-content span {
	color: #888;
	font-size: 15px;
	margin-right: 20px;
}

.role-content label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	color: #555;
	cursor: pointer;
}

.role-content input[type="radio"] {
	accent-color: #B45F06;
	width: 16px;
	height: 16px;
}