html,
body {
    background: var(--theme-primary-color, #189EDA);
    font-family: "Open Sans";
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}

* {
    outline: none;
}

.wrapper {
    width: 250px;
    text-align: center;
    padding: 10px;
    padding-top: 0;
}

h1 {
    margin-top: 0;
}

input {
    display: block;
    width: 80%;
    margin: auto;
}

input[type=submit] {
    padding: 10px;
    font-weight: 600;
    font-size: medium;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: white;
    background: var(--theme-secondary-color, #136d97);
    border: 1px solid var(--theme-secondary-color, #136d97);
    border-radius: 10px;
    box-shadow: 0px 0px 10px var(--theme-secondary-color, #136d97);
    transition: .2s all ease;

}

input[type=submit]:hover,
input[type=submit]:focus,
input[type=submit]:active {
    text-transform: uppercase;
    color: white;
    transform: translateY(-0.15em);
    cursor: pointer;
    box-shadow: 0px 0px 15px var(--theme-secondary-color, #136d97);

    filter: brightness(1.1);
}

input[type=password] {
    box-sizing: border-box;
    padding: 10px 25px;
    border: none;
    background: transparent;
    width: 100%;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, .2);
    color: white;
}

input[type=password]:hover {
    background: rgba(255, 255, 255, .4);
}

input[type=password]:focus {
    background: rgba(255, 255, 255, .5);
}

.bi-key {
    font-size: 4rem;
    line-height: 0;
}

.warn {
    color: white;
    text-align: center;
    animation: fadein 2s ease-in-out 1 forwards;
    animation-iteration-count: 1;
    font-size: 1rem;
    font-weight: 800;
    padding: 1rem 2rem;
    background: rgba(255, 0, 0, 0.808);
    border-radius: 8px;

    position: fixed;
    top: 100%;
    z-index: 9999;
    left: 50%;
    width: 90vw;
    max-width: 200px;
    animation: slide 3s ease forwards;
}

@keyframes slide {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    30%, 60% {
        transform: translate(-50%, calc(-100% - 30px));
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 0);
        opacity: 0;
    }
}

@keyframes fadein {
    0% { opacity: 0; }
    20%   { opacity: 1; }
    80%   { opacity: 1; }
    100% { opacity: 0; }
}

.big-title {
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
    font-weight: 600;
    margin-bottom: 1rem;
}

.big-title img {
    content: var(--theme-logo-url, url("https://quiditmiam.fr/images/QDM-rond.png"));
    display: block;
    margin: auto;
    margin-top: .2rem;
    width: 200px;
    border-radius: 100%;
}