* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

:root {
	--ssc-color: #9d2148;
	--stc-color: #FE5000;
	--secondary-color: #856404;
	--secondary-color-a: #fff3cd;
	--secondary-color-b: #ffeeba;
	--text-color: #666;
	--subtitle-color: #888;
}

body {
	display: flex;
	height: 100vh;
}

.container-root {
	display: flex;
	width: 100%;
}

.left {
	flex: 1.7;
	background-color: #eee;
}

.left img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

.right {
	flex: .5;
	padding: 50px 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #fff;
}

.branding-logo {
	width: 400px;
	margin: 0 auto 30px;
	display: block;
}

h2 {
	font-size: 24px;
	margin-bottom: 10px;
}

.subtitle {
	font-size: 14px;
	color: var(--text-color);
	margin-bottom: 30px;
}

.login-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.input-group {
	position: relative;
}

.input-group input {
	width: 100%;
	padding: 12px 40px 12px 12px;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 6px;
}

.clear-icon, .toggle-password {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	font-size: 14px;
	color: var(--subtitle-color);
}

.options {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	align-items: center;
	margin-bottom: 20px;
}

.ql-logo {
	margin-top: 30px;
	width: 120px;
	align-self: center;
}

.input-group input:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(0, 85, 165, 0.2);
	transition: all 0.3s ease;
}

.btn-primary {
  display: block;
  text-align: center;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}

.btn-ssc {
    background-color: var(--ssc-color);
}

.btn-stc {
    background-color: var(--stc-color);
}

.btn-primary:disabled {
  cursor: not-allowed;
  opacity: .65;
}

.btn-ssc:hover {
	background-color: var(--ssc-color);
}

.btn-stc:hover {
	background-color: var(--stc-color);
}

.link-primary {
	text-decoration: none;
	font-weight: 600;
}

.link-ssc {
	color: var(--ssc-color);
}

.link-stc {
	color: var(--stc-color);
}

.text-center {
	text-align: center;
}
.lead {
	margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-warning {
    color: var(--secondary-color);
    background-color: var(--secondary-color-a);
    border-color: var(--secondary-color-b);
}

.hide {
	display: none;
}

@media (max-width:768px) {
	body {
		flex-direction: column;
	}

	.left {
		display: none;
	}

	.right {
		flex: 1;
		padding: 30px 20px;
	}

	.logo-ssc, .logo-stc {
		width: 250px;
	}

}
