#login-container {
	display: flex;
	min-height: 100vh;
	width: 100%;
}

#login-container > .column-left {
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #002D61;
	display: flex;
	padding: 40px 64px;
	justify-content: space-between;
}

#login-container > .column-right {
	flex-grow: 1;
	flex: 1;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	background-image: var(--hero-image-url);
	background-size: cover;
	background-position: center;
}

#verisk-logo-container {
	width: 100%;
	margin-bottom: 96px;
}

#verisk-logo-container-abs {
	position: absolute;
	left: 64px;
	top: 64px;
}

#login-area {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 0px;
}

#brand-area {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0px 0px 40px;
	gap: 8px;
}

#logo {
	font-style: normal;
	font-weight: 500;
	font-size: 48px;
	line-height: 48px;
	color: #FFFFFF;
}

#logo-trademark {
	font-weight: 100;
}

#company-name {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;

	/* Verisk brand/Primary/Radical blue */
	color: #2A7DE1;
}

#login-form-header {

	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 32px;	
	
	color: #FFFFFF;
}

#login-form-input-area {
	/* Auto layout */

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-self: stretch;

	height: 142px;
}

#login-form-input-area input {
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 4px;
	background-color: transparent;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 12px;
	padding: .5rem;
	
	/* Text/$text-inverse-secondary */
	color: rgba(255, 255, 255, 0.8);
}

/* Attempt to prevent Chrome from overriding input colors */
/* input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
	-webkit-box-shadow: 0 0 0 30px white inset !important;
	box-shadow: 0 0 0 9999px #fff inset;
	transition: background-color 5000000s ease-in-out 0s;
} */

#login-form-checkbox-row {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0px 0px 24px;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #FFFFFF;
}

#login-form-checkbox-row input {
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 2px;
	background-color: transparent;
	accent-color: transparent;
	margin-right: 8px;
}

#login-form-buttons-row {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding: 0px;
	gap: 8px;

	margin-bottom: 64px;
}

#login-form-buttons-row > .column-left {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding: 0px;
	gap: 8px;

	width: 265px;
	height: 36px;
}

.button-outlined {
	box-sizing: border-box;

	/* Auto layout */

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 10px 16px;
	gap: 8px;

	background: #002D61;

	/* Verisk brand/Action blue */

	border: 1px solid #2671CB;
	border-radius: 2px;

	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	text-align: center;
	letter-spacing: 0.5px;
	
	/* Text/$text-inverse */
	
	color: #FFFFFF;
	text-transform: uppercase;

	cursor: pointer;
}

.button-contained {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 10px 16px;
	gap: 8px;

	/* Verisk brand/Action blue */

	background: #2671CB;
	border: 1px solid #2671CB;
	border-radius: 2px;

	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	text-align: center;
	letter-spacing: 0.5px;

	color: #FFFFFF;
	text-transform: uppercase;

	cursor: pointer;
}

#login-form-agreements-row {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding: 0px 0px 24px;
	gap: 24px;
	
	width: 352px;
	height: 64px;	
	color: rgba(255, 255, 255, 0.7);
}

#agreements-text {
	color: white;

	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;

	width: 240px;
}

#agreements-text a {
	color: #2A7DE1;
}

#login-form-other-links {
	display: flex;
	gap: 8px;

	width: 100%;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	
	letter-spacing: -0.416586px;
	
	color: #FFFFFF;
}

#login-form-other-links a {
	color: #FFFFFF;
}

/* If the display is <= 768px expand the login column width to 100% */
@media (max-width: 768px) {
	#login-container > .column-left {
		width: 100%;
	}
}