.body
{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0px;
    background-color: #303030;
    overflow: hidden;
}
.loading-container
{
    display: none;
    z-index: 100;
    width: 100%;
    height: 100vh;
    position: absolute;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(0, 0, 0, .5);
}
.loading-icon
{

}
.loading-text
{
    margin-top: -90px;
    font-family: roboto;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    font-size: 12px;
}
.login
{
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    background: #2f2f2f;
    border-radius: 3px;
    box-shadow: #1b1b1bb8 0px 0px 10px;
    padding: 20px;
    width: 350px;
    pointer-events: all;
    overflow: auto;
    max-height: 80vh;
}
.login-logo
{
    width: 60px;
}
.login-title
{
    margin-bottom: 0px;
    color: white;
    font-family: roboto;
    font-weight: 500;
    width: 100%;
    margin-top: 0px;
    text-align: center;
}
.login-input[type="text"]
{
    background-color: transparent;
    border: none;
    border-bottom: #f57c00 2px solid;
    margin-top: 3px;
    margin-bottom: 3px;
    padding-left: 5px;
    padding-right: 5px;
    color: white;
    font-family: roboto;
    font-size: 15px;
    height: 22px;
    box-shadow: 0 0 0 30px #2F2F2F inset;
    -webkit-text-fill-color: white;
}
.login-input[type="text"]::placeholder
{
    color: white;
    opacity: .1;
}
.login-input[type="text"]:focus
{
    outline: none;
}
.login-input[type="password"]
{
    background-color: transparent;
    border: none;
    border-bottom: #f57c00 2px solid;
    margin-top: 3px;
    margin-bottom: 3px;
    padding-left: 5px;
    padding-right: 5px;
    color: white;
    font-family: roboto;
    font-size: 15px;
    height: 22px;
    box-shadow: 0 0 0 30px #2F2F2F inset;
    -webkit-text-fill-color: white;
}
.login-input[type="password"]::placeholder
{
    color: white;
    opacity: .1;
}
.login-input[type="password"]:focus
{
    outline: none;
}
.login-input[type="submit"]
{
    height: 40px;
    background-color: #F57C00;
    border: none;
    border-radius: 3px;
    color: white;
    font-family: roboto;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, .3);
    outline: none;
}
.login-input[type="submit"]:disabled
{
    color: #d8d49f;
    background-color: #b75d02;
}
.login-input[type="submit"]:hover
{
    cursor: pointer;
}
.login-input[type="submit"]:active
{
    background-color: white;
    color: #F57C00;
}
.login-input-container
{
    display: flex;
    flex-direction: column;
    margin-left: 7px;
    margin-right: 7px;
    width: 100%;
}
.login-input-title
{
    padding-left: 5px;
    font-family: roboto;
    color: white;
    font-size: 12px;
    padding-right: 5px;
}
.login-area-description
{
    color: #ff6d00;
    font-family: roboto;
    width: 100%;
    margin-top: 0px;
    font-size: 12px;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
}

.flex-centrilize-horizontal
{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.flex-row
{
    display: flex;
    flex-direction: row;
    width: 100%;
}
.mt10
{
    margin-top: 10px;
}
.mt20
{
    margin-top: 20px;
}
.mb10
{
    margin-bottom: 10px;
}
.mb20
{
    margin-bottom: 20px;
}
.mb5
{
    margin-bottom: 5px;
}

.message-container
{
    position: absolute;
    width: 100%;
    display: flex;
    bottom: 0;
    justify-content: center;
    pointer-events: none;
    z-index: 200;
}
.message-box
{
    background-color: black;
    opacity: .9;
    margin: 20px;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 17px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, .3);
}
.message-box[message-box-status='default']
{
    opacity: 0;
}
.message-box[message-box-status='visible']
{
    animation-name: message-box-show;
    animation-duration: .4s;
    animation-fill-mode: forwards;
}
.message-box[message-box-status='hidden']
{
    animation-name: message-box-hide;
    animation-duration: .4s;
    animation-fill-mode: forwards;
}
.message-content
{
    color: white;
    font-family: roboto;
    font-size: 12px;
}

@keyframes message-box-show
{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
@keyframes message-box-hide
{
    from{
        opacity: 1;
    }
    to{
        opacity: 0;
    }
}

@media screen and (max-width: 480px)
{
    .login
    {
        max-height: 100%;
        height: 100%;
        width: 100%;
        justify-content: center;
    }
}