@font-face {
    font-family: 'Quicksand_Book';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Quicksand_Book.otf);
}
  
@font-face {
    font-family: 'Luna';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Luna.ttf);
}

:root {
    --screen-width: 100vw;
    --screen-height: 100vh;

    --default-input-width: calc(1rem * 25);

    --main-bg-color: #f2f2f2;
    --main-black: #4d4d4d;
    --basic-gray: #b0b0b0;
    --basic-beige: #f2e0d3;
    --basic-orange: #ee7b35;
    --basic_red: #b7331a;

    --accent-yellow: #eebc1a;
    --accent-green: #8fa638;
}


/* RESET */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* MAIN SECTION */

body, html {
    max-width: var(--screen-width);
    max-height: var(--screen-height);
    min-width: var(--screen-width);
    min-height: var(--screen-height);
    width: var(--screen-width);
    height: var(--screen-height);
    background-color: var(--main-bg-color);
    font-family: Quicksand_Book;
    font-size: 16px;
}

h1, h2, h3 {
    font-family: Luna;
    color: var(--basic_red);
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 20px;
}

input {
    padding: 10px;
    border: 1px solid var(--accent-green);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    font-family: QuickSand_Book;
    font-size: 1.2rem;
}

input:focus {
    outline: 2px solid var(--accent-green) !important;
    /* border: 3px solid var(--accent-green); */
}

::placeholder {
    color: var(--basic-gray);
    opacity: 1; /* Firefox */
}

.input {
    width: var(--default-input-width);
}

.hidden-btn {
    display: none;
}

/**********************
    PAGE SPECIFIC
**********************/

/* LOGIN PAGE */
.login-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.login-container .logo-and-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-and-title > img {
    width: 550px;
}

