body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'TikTok Sans', 'Nunito', sans-serif !important;
    background-color: #2F3034;
}

.screen {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.centered {
    text-align: center;
}

.logo {
    width: 200px;
    animation: fadeIn 1.5s ease-in-out;
}

.login-image {
    width: 320px;
    max-width: 95%;
}

.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.splash-login-title {
    font-weight: 100;
    font-size: 25px;
    color: #FFFFFF;
    font-family: 'nunito';
    margin-top: 50px;
}

.card {
    border: 1px solid #3A3A3A;
    background-color: #2F3034;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/* Center login-container inside login-screen */
#login-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* Full height */
    display: none;
    /* initial state hidden for jQuery fadeIn */
}

/* Optional: limit the max width */
.login-container {
    width: 100%;
    max-width: 400px;
}

.form-label {
    font-family: 'TikTok Sans', 'Nunito', sans-serif;
}

.btn-login {
    background: #1C1C1C;
    width: 75%;
    border-radius: 5px;
}

.btn-login:hover {
    background: #26272c;
}