#id-login {
    width: 100%;
    height: 100%;
    margin: 0;
    background-image: url("/core/jpg/roci.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#id-credentials {
    width: calc( 100% - 50px );
    height: 50px;
    margin: 0px;
    position: absolute;
    bottom: 25px;
    left: 25px;
}

#id-username,
#id-password {
    width: calc((40% - 50px - 4px) / 2);
    height: calc(100% - 2px);
    margin: 0px 25px 0px 0px;
    text-align: center;
    border-radius: var(--input-radius);
    float: left;
    color: var(--font-color-light);
    font-size: var(--font-size-default);
    background-color: rgba(0,0,0,0);
    border-style: solid;
    border-width: 1px;
    border-color: var(--color-rocinante);
}

#id-submit {
    width: calc(10% - 2px);
    height: calc(100% - 2px);
    margin: 0px 25px 0px 0px;
    text-align: center;
    color: var(--color-light);
    border-radius: var(--input-radius);
    float: left;
    background-color: var(--color-rocinante);
    cursor: pointer;
    cursor: hand;
    font-size: 1vw;
    border-style: solid;
    border-width: 1px;
    border-color: var(--color-rocinante);
}

#id-submit:hover {
    background-color: var(--color-rocinante-hover);
}

#id-persistent {
    width: calc( 30% - 25px );
    height: 100%;
    float: left;
}

#id-persistent_field {
    width: 20px;
    height: 20px;
    float: left;
    cursor: pointer;
    cursor: hand;
}

#id-persistent_label {
    float: left;
    margin: 0px 0px 0px 10px;
    font-size: 0.9vw;
}