body.login {
    background: #FFEADC;
    font-family: sans-serif;
}

.login form {
    border-radius: 12px;
    background: #fff9f1;
}

.login h1 a {
    background-image: url("../img/aurenem-square-dp.svg");
    
}

.login .button {
    text-decoration: none;
    border: 1px solid #5E2946;
    color: #5E2946;
    background-color: transparent;
    padding: 0 12px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    line-height: 2.30769231;
    display: flex;
    align-items: center;
    transition: .2s ease;
    cursor: pointer;
    min-height: 32px;

    &.button-primary.button-large {
        background-color: #EAAD8C;

        &:hover {
            background-color: #BC8BAA;
            color: #5E2946;
            border: 1px solid #5E2946;
        }
    }

    &:hover {
        background-color: #BC8BAA;
        color: #5E2946;
        border: 1px solid #5E2946;
    }
}

.login .indicator-hint,
.login .language-switcher {
  display: none;
}