@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&display=swap');


/* VARIABLES */
* {
    --bg-color: #ffffff;
    --block-color: #202125;
    --additional-color: #8B8C8E;
    --inactive-color: #3C4041;
    --red-color: #FF764C;
    --green-color: #70CF97;
}


/* REMOVE SCROLLBAR */
body::-webkit-scrollbar {
    display: none;
}


/* BODY */
body {
    background-color: var(--bg-color);
    font-family: 'Inter', sans-serif;
    color: white;
}

.container {
    text-align: center;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
}

/* CLASSES */
.block {
    background-color: var(--block-color);
    border-radius: 10px;
}

#copyrighting {
    display: none;
}

.additional {
    color: var(--inactive-color);
    font-size: 16px;
    font-weight: 300;
    line-height: 10px;
}

.authentication {
    text-align: center;
    margin: 15px auto 50px auto;
    padding: 20px;
    min-height: 195px;
    min-width: 300px;
}

.authentication form {
    display: flex;
    flex-flow: column wrap;
    row-gap: 10px;
}

.authentication button {
    border-radius: 10px;
    height: 45px;
    width: 100%;
}

.authentication input {
    background-color: var(--block-color);
    border: var(--inactive-color) solid 1px;
    border-radius: 10px;
    height: 45px;
}

.discord {
    text-align: center;
    margin: 50px auto 15px auto;
    padding: 20px;
    max-height: 95px;
    min-width: 300px;
}

.discord button {
    border-radius: 10px;
    height: 45px;
    width: 100%;
}
