* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
	flex-direction: column;
}
.container-small, .container-medium, .container-large {
    display: flex;
	overflow-y: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	background-color:white;
	border-radius:20px;
}
.entry-logo-top {
    display: block;
	flex: 0 0 auto;
    width: 100%;
    padding: 15px 0px;
    background-color: rgba(9,30,66,1);
}

.entry-logo-top img {
    display: block;
    margin: 0 auto;
}
.checkbox {
	position:relative;
}
.checkbox:has(input:checked) svg {
	display:block;
}
.checkbox svg {
	position:absolute;
	top:5px;
	left:5px;
	pointer-events:none;
	display:none;
}
.remember-me-group {
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
}
.container-small {
	max-width:500px;
}

.logo {
    margin-bottom: 0;
    text-align: center;
}
.form-group input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s;
}
.form-group input:focus {
    outline: none;
    border-color: yellow;
}
.form-group .error {
    border-color: red !important;
}
.error-placeholder {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: none; /* Hide by default */
}
.checkbox-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.checkbox-group a, .checkbox-group a:visited {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}
.checkbox-group a:hover {
    text-decoration: underline;
}
.login-btn, .create-account-btn {
    width: 100%;
    padding: 10px;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}
.tos-disclaimer {
	color: var(--color-gray-900);
	text-align: center;
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
}
.tos-disclaimer a, .tos-disclaimer a:visited {
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
	color: var(--color-gray-900);
}
.signup-link a, .signup-link a:visited {
	color: var(--color-gray-900);
}
.signup-link {
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}
.submit-login-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--4, 16px);
	align-self: stretch;
}
.login-subheading {
	color: var(--color-neutral-dark);
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.page-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex: 1 1 auto;
	padding:10px;
}
.inner-container {
	display: flex;
	padding: var(--10, 40px) 32px;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	align-self: stretch;
}

.inner-container form {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-self: stretch;
}


/* Extra Small devices (landscape phones, 575px and below) */
@media (max-width: 575px) {

}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width:767px){

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px){

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width:1199px) { 

}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width:1399px){

}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

}