.page-container {
	width: 100%;
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	margin-top: 30px;
	position: relative;
	overflow: hidden;
}


.login-form {
	width: 700px;
	background: #1c1f26;
	border-radius: 16px;
	padding: 40px;
	position: relative;
	transition: left 0.5s ease;
}


.verification-code-form {
	width: 800px;
	background: #1c1f26;
	border-radius: 16px;
	padding: 40px;
	position: relative;
	margin-left: -10px;
	transition: all 0.5s ease;
	display: none;
	opacity: 0;
	visibility: hidden;
}


.verification-code-form.show {
	display: block;
	opacity: 1;
	visibility: visible;
}


.verification-code-title {
	font-size: 20px;
	color: #fff;
	margin-bottom: 10px;
	font-weight: bold;
}


.back-arrow {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: rotate(-45deg);
	cursor: pointer;
}


.verification-code-subtitle {
	font-size: 16px;
	color: #fff;
	margin-bottom: 20px;
}


.verification-code-input-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
	gap: 10px;
	width: 100%;
	max-width: 360px;
	margin: 0 auto;
}


.verification-code-input {
	width: 50px;
	height: 50px;
	text-align: center;
	font-size: 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	background: transparent;
	color: #fff;
	outline: none;
	transition: all 0.3s ease;
	box-sizing: border-box;
}


.verification-code-input:focus {
	border-color: #4facfe;
}


.error-message {
	color: red;
	margin-top: 5px;
	display: none;
}


.submit-registration-btn {
	width: 100%;
	padding: 12px;
	background: #4facfe;
	border: none;
	border-radius: 8px;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	margin-top: 24px;
	transition: all 0.3s ease;
}


.submit-registration-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
}


.submit-registration-btn:hover {
	background: #4fa0fe;
}


.resend-verification-code-btn {
	width: 100%;
	padding: 12px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	margin-top: 10px;
	transition: all 0.3s ease;
	text-align: center;
}


.resend-verification-code-btn:hover {
	background: rgba(255, 255, 255, 0.1);
}


.resend-verification-code-btn:disabled {
	background: #ccc;
	color: #999;
	cursor: not-allowed;
}


.submit-btn.clicked {
	background: #4fa0fe;
	color: #fff;
	cursor: default;
}


.form-group {
	position: relative;
	margin-bottom: 24px;
}


.submit-btn:disabled {
	background: #ccc;
	color: 999;
	cursor: not-allowed;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
	align-items: center;
	justify-content: center;
}

.modal-content {
	background-color: white;
	padding: 20px;
	border-radius: 5px;
	width: 300px;
	text-align: center;
}

.modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 24px;
	cursor: pointer;
}
