.loginBackground {
    width: 100%;
    height: 100%;
    background-image: url('../images/blobs.svg');
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .loginBackground > div {
        width: 400px;
        padding: 20px;
        background-color: white;
        box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.1);
        border-radius: 10px;
    }

    .loginBackground p {
        margin-top: 10px;
    }

    .loginBackground > div > label {
        color: var(--color-coral);
        font-size: 0.9em;
        height: 0.9em;
    }

    .loginBackground > div > div:last-child {
        text-align: right;
    }

@media (max-width: 480px) {
    .loginBackground > div {
        width: 80%;
    }
}

.loginBackground h1 {
    margin-top: 20px;
}

.loginBackground button {
    margin-top: 10px;
}
