/* ------------------------------
Variables
------------------------------ */
:root
{
--color-body-background: #f7f5f2;
--color-body-font: black;
--color-heti-blue: #04ade7;
--color-heti-green: #8cdb83;
--font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--font-line-height: 1.4;
--font-size: 15px;
}

/* ------------------------------
Reset
------------------------------ */
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
}

button
{
appearance: none;
border: none;
font-size: inherit;
}

button:hover
{
cursor: pointer;
}

/* ------------------------------
Styles
------------------------------ */
body
{
align-items: center;
background-color: var(--color-body-background);
/*background-image: url('../img/login-bkg.png');*/
background-position: center center;
background-size: 60px 104px;
color: var(--color-body-font);
display: flex;
font-family: var(--font-family);
font-size: var(--font-size);
justify-content: center;
line-height: var(--font-line-height);
margin: 0;
min-height: 100vh;
}

main
{
display: flex;
max-width: 60vw;
padding: 1.5rem;
}

main > div
{
background: var(--color-heti-blue);
box-shadow: 0.1rem 0.1rem 0.5rem rgba(0,0,0,0.2);
color: white;
border-radius: 1rem 0 0 1rem;
display: flex;
flex: 1;
flex-direction: column;
justify-content: center;
padding: 4rem 3vw;
}

main > div:first-child
{
background-image: url('../img/e.svg');
background-position: calc(100% - 2rem) 2rem;
background-repeat: no-repeat;
background-size: 3rem 3.15rem;
}

main > div:last-child
{
background: white; 
color: black;
border-radius: 0 1rem 1rem 0;
}

h1,
h2
{
font-size: 1.5rem;
margin: 0;
}

h1 span
{
display: block;
font-size: 1rem;
font-weight: normal;
}

p
{
margin: 1rem 0 0;
}

main form > div
{
margin: 0.5rem 0;
}

main form label
{
display: block;
}

main form h3
{
font-size: 0.875rem;
margin: 0 0 0.25rem;
}

main form div.input
{
width: 100%;
}

main form input
{
border: 1px solid #888888;
border-radius: 0.375rem;
display: block;
font-size: inherit;
padding: 0.5rem;
width: 100%;
}

main form button
{
border-radius: 2rem;
background-color: var(--color-heti-green);
color: var(--color-body-font);
display: block;
margin: 1rem 0 1.5rem;
padding: 0.5rem 2rem;
width: 100%;
}