.loginBackground {
    width: 100%;
    height: 100%;
    background-image: url('../images/login_background.svg');
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 480px) {
    .loginBackground > div {
        width: 80%;
    }
}

.loginBackground > div {
    width: 400px;
    padding: 20px;
    background-color: var(--color-backgroundDialogs);
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.1);
    border-radius: 10px;
    text-align: center;
    background-image: url('../images/bubbles.svg');
    background-repeat: no-repeat;
    background-position: -30px -20px;
    background-size: 160px;
}

.loginBackground h1 {
    margin-bottom: 20px;
}

.loginBackground input {
    text-align: center;
}

.loginBackground > div > div {
    margin: 10px;
}

    .loginBackground > div > div > p {
        margin-top: 20px;
        margin-bottom: 2px;
    }

.loginBackground .result {
    margin-top: 5px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loginBackground label {
    color: var(--color-coral);
    font-size: 0.8em;
    font-weight: normal;
}

.loginBackground > div > div:last-of-type {
    margin-top: 30px;
}

.gradientLine {
    height: 1px;
    background: linear-gradient(to right, var(--color-mustard), transparent);
    border: none;
    width: 150px;
}