
@font-face {
    font-family: 'WorkSans';
    src: url("./fonts/WorkSans-VariableFont_wght.ttf");
}

* {
    font-family: 'WorkSans', sans-serif;
    box-sizing: border-box;
}

body {
    position: relative;
    display: flex;
    margin: 0px;
    background-color: #121212;
    width: 100%;
    height: 100vh;
}

body {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0px;
    background-color: #121212;
    width: 100%;
    height: 100vh;
}

main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 350px;
    color: white;
}

@media screen and (max-width: 400px)
{
    main {
        width: 300px;
    }
}

@media screen and (max-width: 325px)
{
    main {
        width: 200px;
    }
}

label {
    color: #fff;
    margin-bottom: 10px;
    margin-top: 20px;
}

label.titleLabel {
    font-weight: bold;
}

input {
    background-color: #292929;
    border: none;
    border-bottom: 3px solid #fff;
    width: 100%;
    height: 50px;
    padding-left: 15px;
    font-size: 15px;
    color: white;
}

input::placeholder, input:-ms-input-placeholder {
    color: #fff;
    opacity: 1;
}

div {
    display: flex;
    flex-direction: column;
    width: 100%;
}

img {
    margin-top: 100px;
    margin-bottom: 40px;
}

span {
    font-size: 15px;
    margin-top: 10px;
    cursor: pointer;
    width: fit-content;
    color: #fff;
}

span:hover {
    text-decoration: underline;
}

/* #region Custom Checkbox */

div.customCheckbox {
    padding-top: 10px;
    height: 80px;
    width: 100%;
    max-width: 350px;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    position: relative;
    padding-left: 38px;
}

div.customCheckbox label {
    position: relative;
    cursor: pointer;
}

div.customCheckbox label:hover {
    text-decoration: underline;
}

div.customCheckbox input {
    width: 0px;
    height: 0px;
    opacity: 0;
    background-color: transparent;
    cursor: pointer;
    position: absolute;
}

div.customCheckbox .checkbox {
    position: absolute;
    top: 18px;
    left: 0;
    height: 24px;
    width: 24px;
    border: 2px solid #6d6d6d;
    background-color: transparent;
    border-radius: 12px;
}

div.customCheckbox .checkbox::after {
    content: "";
    position: absolute;
    display: none;
    width: 14px;
    height: 14px;
    border-radius: 7px;
    background-color: #6d6d6d;
    left: 3px;
    top: 3px;
}

div.customCheckbox input:checked ~ .checkbox:after {
    display: block;
}

/* #endregion */

button {
    width: 100%;
    height: 60px;
    min-height: 60px;
    margin-bottom: 10px;
    font-family: 'WorkSans', sans-serif;
    color: #fff;
    background-color: #292929;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

div#statusArea {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 0 20px;
    border-radius: 5px;
    background-color: #EE333888;
}

div#statusArea.noStatus {
    display: none;
}

*.statusIndicator {
    background-color: #EE333888 !important;
}