:root{
    --primary-color: #642C8D;
}

body {
    background-image: url("/../assets/images/background.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    background-attachment: fixed;
    background-size: cover;
}
.login-container{
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    text-align: center;
    padding: 5% 0 0;
    //overflow: auto;
    overflow-y: auto;
    overflow-x:hidden;
}
.login-header{
    text-align: center;
}
.login-header img{
    width: 200px;
    height: 160px;
}
.login-panel{
    margin: 30px 0 0;
    padding: 20px;
    background-color: rgb(205, 205, 205, 0.8);
    text-align: left;
    //width:  400px;
    margin-left: auto;
    margin-right: auto;
}
.login-panel label{
    font-size: 14px;
    font-weight: normal;
}
.login-panel input{
    height: 50px;
}
.login-panel select{
    height: 50px;
}
.select2-container{
    height: 50px;
}
.btn-login{
    width: 100%;
    color: white;
    background-color: var(--primary-color);
    height: 50px;
    margin-top: 10px;
}

.btn-login:hover{
    width: 100%;
    color: white;
    text-decoration: none;
}
.form-group a{
    //color: var(--primary-color);
    color: black;
    font-size: 14px;
}

.invalid-feedback{
    color: #ff412d;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--primary-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #261161;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #262261;
}

.next {
    color: white !important;
    text-align: center;
    padding-top: 13px;
}
