.auth-container *,
.auth-container *::before,
.auth-container *::after {
	box-sizing: border-box;
}

body.oadb-auth-page {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	background: linear-gradient(135deg, #f5f1e8 0%, #e8dcc8 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 20px;
	margin: 0;
}

.auth-container {
	background: #f5f1e8;
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	max-width: 520px;
	width: 100%;
	min-height: auto;
	display: block;
	position: relative;
	margin: 0 auto;
}

.left-panel {
	flex: 1;
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 2;
	max-width: 100%;
}

.form-header {
	margin-bottom: 30px;
	text-align: center;
}

.form-header h2 {
	font-size: 32px;
	color: #1a1a1a;
	margin-bottom: 10px;
	font-weight: 600;
	letter-spacing: -0.5px;
	margin-top: 0;
}

.form-header p {
	color: #6b6b6b;
	font-size: 14px;
	margin: 0;
}

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

.form-group label {
	display: block;
	margin-bottom: 10px;
	color: #6b6b6b;
	font-size: 14px;
	font-weight: 400;
}

.auth-container input[type="text"],
.auth-container input[type="email"],
.auth-container input[type="password"],
.auth-container input[type="url"],
.auth-container textarea,
.auth-container select {
	width: 100%;
	padding: 16px 20px;
	border: none;
	border-radius: 50px;
	font-size: 15px;
	background: #ffffff;
	color: #333;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	font-family: inherit;
}

.auth-container textarea {
	border-radius: 20px;
	resize: vertical;
	min-height: 100px;
}

.auth-container input:focus,
.auth-container textarea:focus,
.auth-container select:focus {
	outline: none;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.auth-container input::placeholder,
.auth-container textarea::placeholder {
	color: #999;
}

.password-wrapper {
	position: relative;
}

.password-toggle {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	transition: color 0.3s ease;
}

.password-toggle:hover {
	color: #333;
}

.password-toggle svg {
	width: 20px;
	height: 20px;
}

.btn-submit {
	width: 100%;
	padding: 18px;
	background: #f4d03f;
	color: #333;
	border: none;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 30px;
	box-shadow: 0 4px 16px rgba(244, 208, 63, 0.3);
}

.btn-submit:hover {
	background: #f0c929;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4);
}

.btn-submit:active {
	transform: translateY(0);
}

.footer-text {
	margin-top: 30px;
	text-align: center;
	font-size: 14px;
	color: #6b6b6b;
}

.footer-text a {
	color: #333;
	text-decoration: underline;
	font-weight: 500;
}

.footer-links {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	font-size: 14px;
}

.footer-links a {
	color: #6b6b6b;
	text-decoration: underline;
}

.close-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: all 0.3s ease;
}

.close-btn:hover {
	background: #fff;
	transform: scale(1.1);
}

.profile-header {
	text-align: center;
	margin-bottom: 40px;
}

.profile-avatar {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	border: 4px solid #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	margin: 0 auto 18px;
	object-fit: cover;
}

.profile-name {
	font-size: 26px;
	color: #1a1a1a;
	margin-bottom: 6px;
	font-weight: 600;
	margin-top: 0;
}

.profile-email {
	font-size: 15px;
	color: #6b6b6b;
	margin: 0;
}

.profile-info {
	background: #ffffff;
	border-radius: 18px;
	padding: 26px;
	margin-bottom: 22px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-row {
	display: flex;
	justify-content: space-between;
	padding: 14px 0;
	border-bottom: 1px solid #e8dcc8;
}

.info-row:last-child {
	border-bottom: none;
}

.info-label {
	color: #6b6b6b;
	font-weight: 500;
	font-size: 14px;
}

.info-value {
	color: #1a1a1a;
	font-weight: 600;
	font-size: 14px;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

@media (max-width: 968px) {
	.auth-container {
		max-width: 100%;
	}

	.left-panel {
		padding: 40px 30px;
		max-width: 100%;
	}

	.form-header h2 {
		font-size: 28px;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}
}
