@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,900;1,400&family=Montserrat:wght@900&display=swap');

/** RESET **/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.2;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/** END RESET **/

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin-bottom: 16px;
}

h1 {
    width: 100%;
    font-size: 1.5rem;
    text-align: center;
    display: block;
}

h2 {
    font-size: 1.2rem;
    display: block;
}

a {
    text-decoration: none;
    color: #ff4861;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: disc;
    margin-left: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #e2e2e2;
    color: #3C3C3C;
}

.container {
    background-color: white;
    max-width: 1400px;
    width: calc(100% - 32px);
    box-shadow: 0 4px 16px -4px #000;
    margin: 16px auto;
    padding: 32px;
    box-sizing: border-box;
}

.login-form-container {
    max-width: 400px;
    margin: 0px auto;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

input {
    margin-bottom: 16px;
    width: 100%;
    padding: 8px;
    border: 1px solid #E2E2E2;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-validated input:invalid {
    border-color: red;
}

.btn {
    display: block;
    width: 100%;
    padding: 8px;
    cursor: pointer;
    border: 1px solid #E2E2E2;
    color: white;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.btn.primary {
    background-color: #b0db43;
    font-size: 1.05rem;
}

.alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
}

.alert.success {
    background-color: rgba(176, 219, 67, 0.4);
    border-color: rgba(176, 219, 67, 0.13)
}

.alert.error {
    background-color: rgba(248, 134, 130, 0.4);
    border-color: rgba(248, 134, 130, 0.205)
}

.text-center {text-align: center !important;}
.text-bold {font-weight: bold !important;}
.w-100 {width: 100% !important}
.d-block {display: block !important}
.mt-1 {margin-top: 8px !important}
.mt-2 {margin-top: 16px !important}
.mt-3 {margin-top: 32px !important}
.mb-1 {margin-bottom: 8px !important}
.mb-2 {margin-bottom: 16px !important}
.mb-3 {margin-bottom: 32px !important}