/* Import "Montserrat" Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&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;
}

/********************************************************
 * Variables 
 ********************************************************/
:root {
    --clr_background: #313131;
    --clr_header: #262626;
    --clr_top_bar_text: white;
    --clr_accent: #BD00FF;
    --padding_left_border: 2em;
    --clr_chart: #616161b4;

    --header_height: 85px;
}

/********************************************************
 * Settings for entire body 
 ********************************************************/
 html {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: var(--clr_header);
    box-sizing: border-box;

}

/********************************************************
 * Body 
 ********************************************************/

body {
    height: 100%;
}

/********************************************************
 * Content page 
 ********************************************************/

.contentPage {
    height: 100vh;  
    max-height: -webkit-fill-available;
    display: grid;
    place-items: center;
    box-sizing: border-box;
}


.card {
    background-color: var(--clr_header);
    width: 90%;
    height: 90%;
    border-radius: 15px;
    display: block;
}

.cardContent {
    color: var(--clr_top_bar_text);
    font-weight: bold;
    box-sizing: border-box;
    height: 100%;
    margin:0;
    padding-top: 0;
    padding: 2em;
}

.formContainer label {
    display: block;
    padding-left: 10px;
    margin-bottom: 0.4rem;
}

.titleWrapper {
    display: block;
    width: 100%;
}
.cardTitle {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 5rem;

}

.cardTitle img {
    height: 50px;
    display: block;
    text-align: center;
    margin: auto;
    margin-bottom: 2rem;
}

.cardTitle span {
    text-align: center;
    font-size: 1.5rem;
}

.formWrapper {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: auto;
    overflow-y: hidden;
}

label {
    display: block;
    padding-left: 12px;
    padding-bottom: 0.5rem;
}
input[type=text], input[type=password]{
    border: 1px solid var(--clr_chart);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    padding: 0.8em;
    margin-bottom: 1.5em;
    border-radius: 25px;
    background-color: var(--clr_chart);
    color: white;
}

input[type=text]:focus, input[type=password]:focus {
    border: 2px solid var(--clr_accent);
    outline: none;

}

button {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 2.5rem;
    border-radius: 25px;
    margin-top: 3rem;
    background-color: var(--clr_accent);
    border: none;
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

input[type=text]::placeholder, input[type=password]::placeholder {
    color: var(--clr_top_bar_text);
    opacity: 0.5;
}

@media screen and (min-width: 1200px)
{
    .cardContent{
        display: flex;
        padding: 3rem;
    }

    .titleWrapper{
        width: 50%;
        border-right: 2px solid var(--clr_chart);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .cardTitle{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-end;
        margin: 0;
    }

    .cardTitle img {
        margin: 0;
        margin-right: 1.5rem;
    }

    .cardTitle span {
        line-height: 1.1rem;
    }


    .formWrapper {
        width: 50%;
        ;
    }

/*
    .cardTitle {
        margin-top: 5rem;
        text-align: center;
        border-right: 2px solid var(--clr_chart);
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .cardTitle img{
        margin: 0;
        scale: auto;
        object-fit: contain;
    }
    */

}