/* -------------------------------------------------------------------------- */

/*	0. CSS Reset
/* -------------------------------------------------------------------------- */


html,
body {
	border: none;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
	border: none;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	padding: 0;
	text-align: inherit;
}

blockquote::before,
blockquote::after {
	content: "";
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* -------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------------------------------------------------- */

@font-face {
    font-family: "Magistral";
    src: url(../fonts/magistral.ttf) format("truetype");
}

:root{

	--colour-bg: rgb(250,247,247);
	--colour-menu: rgb(254,252,252);
	--colour-light: rgb(255,255,255);
	--colour-light-rgb: 255,255,255;
	--colour-primary: rgb(27,29,33);
	--colour-primary-rgb: rgb(27,29,33);
	--colour-cwx: rgb(236,31,39);

	--font-regular-family: 'Lato', sans-serif;
	--font-heading-family: 'Magistral', sans-serif;
    --font-regular-weight: 300;
    --font-regular-size: 1rem;
    --font-small-size: .75rem;
	--font-x-small-size: .6rem;

	--default-border-radius: 10px;

}

body{
	background-color: var(--colour-bg);
	min-height: 100vh;
	padding:0;
	font-family: var(--font-regular-family);
	font-weight: var(--font-regular-weight);
	font-style: normal;
	color: var(--colour-primary);
}


/* -------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------------------------------------------------- */

.sign-in-page{
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	height: 100vh;
}

@media screen and (max-width: 930px) {
	.sign-in-page{
		grid-template-columns: 1fr;
		grid-template-rows: repeat(2, minmax(50%, 1fr));
	}
}

.sign-in-page__splash{
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.sign-in-page__splash img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.sign-in-page__content{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem;
}
.sign-in-page__content__header{
	width: 100%;
	max-width: 400px;
	margin-bottom: 2rem;
}

/* -------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------------------------------------------------- */
