 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
        
.core-adjustment-registration-body {
	font-family: 'Inter', sans-serif;
	background-color: #f7fafc;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}
.bare-registration{
	margin: auto
}
.core-adjustment-main-container{
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
	border-radius: 0.5rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	width: 100%;
}

.core-adjustment-login-section, .core-adjustment-register-section{
	padding: 2rem;
	width: 100%;
}

.section-title {
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #2d3748;
}

.core-adjustment-login-form-field{
	margin-bottom: 1rem;
}

.core-adjustment-login-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: #4a5568;
	margin-bottom: 0.5rem;
}

.required-text {
	color: #ef4444;
}

.core-adjustment-login-input-field {
	border: 1px solid #cbd5e0;
	border-radius: 0.25rem;
	padding: 0.5rem 0.75rem;
	width: 100%;
	transition: all 0.2s ease-in-out;
	background-color: #f6f7f9 !important;
}

.core-adjustment-login-input-field:focus {
	background-color: #fff !important;
    border-color: #b8dffb !important;
    outline: 0 !important;
    box-shadow: 0 0 0 .2rem #3fa9f540 !important;
}

.small-text {
	font-size: 0.75rem;
	color: #dc2626;
	margin-top: 0.25rem;
}

.relative-container {
	position: relative;
}

.password-toggle {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #a0aec0;
	height: 1.25rem;
	width: 1.25rem;
}

.remember-me {
	margin-bottom: 1.5rem;
}

.remember-me label {
	display: inline-flex;
	align-items: center;
}

.remember-me span {
	margin-left: 0.5rem;
	font-size: 0.875rem;
	color: #4a5568;
}

.core-adjustment-login-btn {
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;
	width: 100%;
	border: 1px solid #22c55e;
}
		
.core-adjustment-login-btn-green {
	background-color: #22c55e;
	color: #ffffff;
}

.core-adjustment-login-btn-green:hover {
	background-color: #16a34a;
}

.core-adjustment-login-lost-password {
	text-align: center;
	margin-top: 1rem;
}

.core-adjustment-login-lost-password a {
	color: #3b82f6;
	font-size: 0.875rem;
	text-decoration: none;
	transition: text-decoration 0.2s ease-in-out;
}

.core-adjustment-login-lost-password a:hover {
	text-decoration: underline;
}

.privacy-policy-text {
	margin-bottom: 1.5rem;
	font-size: 0.875rem;
	color: #4b5563;
}

.privacy-policy-text a {
	color: #3b82f6;
	text-decoration: none;
}

.privacy-policy-text a:hover {
	text-decoration: underline;
}

.vertical-separator {
	display: none;
}

@media (min-width: 768px) {
	.login-section, .register-section {
		padding: 3rem;
	}
	
}

@media (min-width: 1024px) {
	.core-adjustment-main-container{
		flex-direction: row;
	}
	.core-adjustment-login-section, .core-adjustment-register-section{
		width: 50%;
	}
	.vertical-separator {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 1rem;
	}
	.vertical-separator-line {
		height: 100%;
		width: 1px;
		background-color: #e5e7eb;
	}
}
@media (max-width: 768px) {
	.woocommerce table.shop_table_responsive tr, 
	.woocommerce-page table.shop_table_responsive tr {
		border-bottom: 2px solid #ccc !important;
	}
}