.background-img {
    background: var(--custom-background-img, url("../img/project_elements/login.png") no-repeat center top);
    /* background: url("../img/project_elements/login.png") no-repeat center top; */
    background-size: 100% 100%;
    height: 100%;
}

.signup-welcome {
    color: white;
    background-color: rgba(50, 75, 100, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    padding: 40px 20px;
}

.signup-welcome > h1 {
    padding-bottom: 20px;
}

.signup-welcome > ol {
    counter-reset: section;
    list-style: none;
    text-align: start;
    padding-top: 20px;
}

.signup-welcome > ol > li {
    margin: 0 0 30px 40px;
    font-size: 16px;
    position: relative;
}

.signup-welcome > ol > li:before {
    content: counter(section);
    counter-increment: section;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 20px -20px -50px;
    border: 2px solid white;
    border-radius: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
}

.login-container {
    padding-top: 20px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    background: #fff;
}

.logo-image {
    /*background: url("../img/project_elements/logo_bitoss.png") no-repeat 100% 100%;*/
    /*background: url("../img/project_elements/logo_full_dcconnect.png") no-repeat 100% 100%; */
/*    background-size: contain;
    background-position: center;*/
    padding-top: 0px;
    width: 250px;
    height: 101px;
    margin: 0 auto;
}

.input-form {
    padding: 0 15px 1px 15px;
}