* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

:root {
	--azul-principal: #002244;
	--azul-acento: #0055a5;
	--gris-fondo: #f0f2f5;
	--gris-texto: #333;
	--blanco: #ffffff;
}

body {
	display: flex;
	height: 100vh;
}

.container-ssc {
	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;
}

.logo-ssc {
	width: 400px;
	margin: 0 auto 30px;
	display: block;
}

h2 {
	font-size: 24px;
	margin-bottom: 10px;
}

.subtitle {
	font-size: 14px;
	color: #666;
	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: #888;
}

.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;
}

.toggle-password {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #888;
}

.input-group input:focus {
	border-color: var(--azul-acento);
	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;
  background-color: #9d2148;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary:disabled {
  cursor: not-allowed;
  opacity: .65;
}

.btn-primary:hover {
	background-color: #1740b0;
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.hide {
	display: none;
}

@media (max-width:768px) {
	body {
		flex-direction: column;
	}

	.left {
		display: none;
	}

	.right {
		flex: 1;
		padding: 30px 20px;
	}

	.logo-ssc {
		width: 250px;
	}

}
