body.app-page {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    min-width: 100%;
    margin: 0;
    padding: 0;

    /*This is important to split the website into 2 pages*/
    display: grid;
    grid-template-columns: auto 1fr;/*The first column should have automatic size and the rest of the website os for the content*/
}

body.auth-page {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    min-width: 100vw;

    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}


.container {
    height: auto;
    width: 100%;
    margin: 0;
}

p {
    font-size: 14px;
    color: oklch(0.35 0 0);
    margin: 5px 0;
}

span {
    font-size: 12px;
    color: oklch(0.35 0 0);
}
