@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100&display=swap'); /*importing Lato font*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap');

:root {
    --off-white: #F6F6F6;
    --light-gray: #D9D9D9;
    --unw-purple: #331E54;
    --unw-yellow: #ECAC00;
    --dark-gray : #4F4E4E;
}
body {
    font-family: Lato;
    background-color: var(--light-gray);
    font-size: 40px;
    height: 100vh;
    width: 100vw;
    max-width: 100%;
    margin: 0;
    border: none;
    padding: 0;
    overflow: hidden;
}
img {
    width: 25%;
}
strong {
    color: var(--unw-purple);
    display: block;
    font-size: 40%;
    margin-top: 7%;
}
.page {
    width: 100%;
    height: 100%;
}
.card-wrapper {
    display: flex;
    justify-content: center;
}
.card {
    background-color: var(--off-white);
    width: 30%;
    border-radius: 3px;
    padding: 2rem;
    margin-top: 3%;
}
.container {
    display: flex;
    justify-content: center;
}
.user-inputs {
    display: flex;
    justify-content: center;
    margin-top: 7%;
}
.user-in {
    border: 1px solid var(--unw-purple);
    border-radius: 3px;
    background-color: var(--off-white);
    font-size: 50%;
    padding: 0.5rem;
    box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 20%);
}
.btn {
    background-color: var(--unw-purple);
    color: var(--off-white);
    border: none;
    padding: 0.8rem 2.5rem 0.8rem 2.5rem;
    border-radius: 3px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 25%);
    font-size: 36%;
    margin-top: 10%;
    cursor: pointer;
}
.staff-prompt {
    font-size: 40%;
    color: var(--dark-gray);
    text-align: center;
    margin-top: 12%;
}
.password-prompt {
    font-size: 30%;
    text-align: center;
    margin-top: 6%;
}
.guest-wrapper {
    position: fixed;
    bottom: 0;
    width: 100%;
}
.guest {
    display: flex;
    justify-content: center;
}
.guest-prompt {
    font-size: 33%;
    font-weight: bold;
    color: var(--unw-purple);
    text-align: center;
}
.link {
    background-color: var(--light-gray);
    color: var(--unw-purple);
    text-decoration: underline;
    font-weight: bold;
    font-size: 100%;
    border: none;
    padding-block: unset;
    padding-inline: unset;
    cursor: pointer;
}
.white-bg-link {
    background-color: var(--off-white);
}
@media (max-width: 800px) {
    .card {
        width: 80%;
    }
    .user-in {
        font-size: 30%;
    }
    .staff-prompt {
        font-size: 35%;
    }
}
@media (max-height: 589px) {
    body {
        overflow-y: scroll;
    }
    .guest-wrapper {
        position: relative;
        bottom: auto;
    }
}