/* LOGIN */
body {
    background: url(/assets/images/discord_bg.png);
}
.login
{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login>div
{
    -webkit-box-shadow: 0 4px 4px rgb(0 0 0 / 12%), 0 0 10px rgb(0 0 0 / 6%);
    box-shadow: 0 4px 4px rgb(0 0 0 / 12%), 0 0 10px rgb(0 0 0 / 6%);
    background: #36393f;
    position: relative;
    border-radius: 6px;
    overflow: auto;
    padding: 20px;
    width: 480px;
    max-width: 80%;
    margin: 5px;
    color: #bbb7ba;
    font-family: sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
}

a,
a:hover {
    color: hsl(235, 85.6%, 64.7%) !important;
}

.login>div>.logo>img
{
    max-width: 80%;
    margin: 0 10%;
}

.login>div>h2
{
    margin: 10px;
    padding:0;
    text-align: center;
    font-weight: 300;
    font-size: 1.6rem;
}

.login h1 {
    color: #e9e9e9;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.login>div>.group-form
{
    margin-bottom: 5px;
}

.login>div>.group-form>label
{
    display: block;
}

.login>div>.group-form>.error {
    display: none;
}

.login>div>.group-form-error>input,
.login>div>.group-form-error>input:hover,
.login>div>.group-form-error>input:focus,
.login>div>.group-form-error>input:active
{
    border: 1px solid #f44336;
}

.login>div>.group-form-error>.error {
    display: block;
    color: #f44336;
    font-weight: 600;
    text-align: center;
}

.login>div>p
{
    text-align: center;
}

.login>div>.copy>p
{
    text-align: center;
    margin: 0;
    color: gray;
    font-size: 11px;
}
.login>div>.copy>p>a
{
    color: gray !important;
}

/* Buttons */

.btn
{
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    outline: 0!important;
    white-space: nowrap;
    border: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 8px 20px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 0.4rem;
    color: #666666;
}

.btn-blue
{
    font-size: 16px;
    line-height: 24px;
    -webkit-transition: background-color .17s ease,color .17s ease;
    transition: background-color .17s ease,color .17s ease;
    padding: 9px 16px;
    border-radius: 3px;
    width: 100%;
    background-color: hsl(235, 85.6%, 64.7%);
    border: none;
    font-weight: 600;
    color: white;
}

/* Inputs */

label
{
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

input[type=text],
input[type=email],
input[type=password]
{
    display: block;
    width: 100%;
    transition: border-color .3s ease-in-out;
    font-size: 1rem;
    line-height: 1.4;
    box-sizing: border-box;
    margin: 3px 0 20px;
    position: relative;
    z-index: 11;
    background: #202225;
    color: #dbdbdb;
    border: none;
    padding: 10px 10px;
    border-radius: 0.375rem;
}

input[type=checkbox]
{
    margin-top: 10px;
}

input:active,
input:focus,
input:hover
{
    outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active
{
    box-shadow: 0 0 0 30px white inset !important;
}

input:read-only
{
    background: #f9f8f8;
    cursor: not-allowed;
}

.invalid-feedback {
    color: #f44336;
    text-align: center;
}

.success {
    background: #29D885;
    padding: 10px;
    color: white;
    margin-bottom: 15px;
}