/* Used by login.php */

.login-body {
    background-color: #1D1D24;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-content {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 400px;
    max-width: 90%;
}

.login-form {
    background-color: #222229;
    padding: 30px 25px;
    border-radius: 10px;
    border: 1px solid #323239;
}

.login-logo-wrapper {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.login-logo-wrapper img {
    width: 80%;
}

.login-version {
    color: #77777E;
    font-size: 12px;
    text-align: center;
    margin-top: 8px;
}

.login-version a {
    color: #77777E;
    font-weight: 500;
    text-decoration: none;
}

.login-form h1 {
    font-size: 26px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: normal;
    color: #CCCCD3;
}

.login-form p {
    font-size: 14px;
    color: #77777E;
    text-align: center;
    margin-bottom: 25px;
}

.login-form input[type=text],
.login-form input[type=password] {
    outline: none;
    border: none;
    background-color: #28282F;
    padding: 8px 10px;
    border-radius: 5px;
    width: 100%;
    border: 1px solid #323239;
    font-size: 15px;
    color: #AAAAB1;
    margin-bottom: 10px;
}

::placeholder {
    color: #404047;
}

.login-form input[type=submit] {
    outline: none;
    border: none;
    background-color: #1a73e8;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
    color: #FFF;
    cursor: pointer;
}
