/*Base Reset & Core Layout Styles*/
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
}

html, body {
	width: 100%;
	height: 100%;
	background-color: #0c0d12;
	color: #ffffff;
	overflow-x: hidden;
}

/*Full Screen Split Layout*/
.page-container {
	display: flex;
	min-height: 100vh;
	width: 100%;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.split-wrapper {
	display: flex;
	width: 100%;
	max-width: 1050px;
	background-color: rgb(22, 24, 30);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	overflow: hidden;
	box-shadow: 0px 20px 40px rgba(0,0,0,0.5);
}

/*Left Side: Form Section*/
.form-side {
	flex: 1;
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.form-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 8px;
}

.form-header h3 {
	font-size: 24px;
	font-weight: 700;
	color: #eaecee;
}

.signup-link {
	color: #2b8dff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
}

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

.subtitle {
	color: #9299a6;
	font-size: 14px;
	margin-bottom: 35px;
	display: block;
}

/*Form Controls*/
.input-group {
	position: relative;
	margin-bottom: 20px;
	width: 100%;
}

.input-field {
	width: 100%;
	padding: 14px 16px;
	background-color: rgb(30, 35, 43);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: #ffffff;
	font-size: 15px;
	outline: none;
	transition: border-color 0.2s;
}

.input-field:focus {
	border-color: #2b8dff;
}

.input-field::placeholder {
	color: #5f6673;
}

/*Actions area*/
.action-row {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 30px;
}

.submit-btn {
	width: 100%;
	background-color: #2b8dff;
	color: white;
	border: none;
	padding: 14px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s;
}

.submit-btn:hover {
	background-color: #1a7ae6;
}

.forgot-link {
	color: #9299a6;
	text-decoration: none;
	font-size: 13px;
	text-align: center;
	display: block;
}

/*Divider*/
.divider {
	display: flex;
	align-items: center;
	text-align: center;
	color: #5f6673;
	font-size: 13px;
	margin: 25px 0;
}

.divider::before, .divider::after {
	content: '';
	flex: 1;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.divider:not(:empty)::before { margin-right: .5em; }
.divider:not(:empty)::after { margin-left: .5em; }

/*Social OAuth Buttons*/
.oauth-row {
	display: flex;
	justify-content: center;
	gap: 16px;
}

.oauth-btn {
	background-color: rgb(30, 35, 43);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	width: 55px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.2s;
}

.oauth-btn:hover {
	background-color: rgba(255, 255, 255, 0.05);
}

/*Right Side: Marketing Image Panel*/
.promo-side {
	flex: 1;
	background-color: rgb(30, 35, 43);
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-image-wrapper {
	margin-bottom: 30px;
	max-width: 320px;
}

.promo-image-wrapper img {
	width: 100%;
	height: auto;
	border-radius: 12px;
}

.promo-side h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #eaecee;
}

.promo-side span {
	color: #9299a6;
	font-size: 14px;
	max-width: 280px;
	line-height: 1.5;
}

/*Responsive Optimization*/
@media (max-width: 850px) {
	.promo-side {
		display: none;
	}
	.split-wrapper {
		max-width: 450px;
	}
}