select:active {
    color: yellow !important;
}

option {
    color: black !important;
}

option:focus {
    color: black !important;
}

option:active {
    color: black !important;
}

.background-image {
    width: 100vw;
    height: 100vh;
    background-color: blue;
    background-image: url(../img/backgrounds/bg2.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* background: rgb(12,21,166);
    background: linear-gradient(339deg, rgba(12,21,166,1) 0%, rgba(41,44,150,1) 47%, rgba(146,149,175,1) 100%); */
    opacity: 1;
}

.form-area {
    width: 100vw;
    height: 100vh;
}

.logo-content {
    padding: 25px;
    padding-bottom: 0px;
}

.logo-image {
    width: 350px;
}

.footer-area {    
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 14px;
    color: snow;
}

.form-group {
    border: 3px solid white;
    border-radius: 25px;
}

.input-group-text {
    color: white;
    background-color: transparent;
    border: none;
}

::placeholder {
    color : whitesmoke !important;
    font-weight: 200;
}

input[type="text"], input[type="password"] {
    background-color: transparent;   
    color: white;
    border: none;
    box-shadow: none !important;
}

input[type="text"]:focus, input[type="password"]:focus {
    background-color: transparent;    
    color: white;
    border: none;
    box-shadow: none !important;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../img/icon-dropdown.png) right / 20px no-repeat #fff;
    margin-right: 10px;
    box-shadow: none !important;
}

select[type="text"] {
    background-color: transparent;    
    color: white;
    border: none;
    box-shadow: none !important;
}

select[type="text"]:focus {
    background-color: transparent;
    opacity: 1;    
    border-radius: 25px;
    color: white;
    border: none;
    box-shadow: none !important;
}

.btn-login {
    z-index: 1;
    margin-top: 25px;
    color: whitesmoke;
    background-color: navy;
    border-radius: 25px;
    font-weight: 700;
}

.btn-login:hover {
    color: whitesmoke;
    background-color: orange;
}