/*login UI*/
body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.box {
    display: inline-block;
    width: 400px;
    height: auto;
    padding: 40px;
    background: rgb(0, 0, 0, 0.6);
    box-sizing: border-box;
    box-shadow: 10px 15px 25px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid #fff;
    color: white;
}

.login_box_wrapper {
    padding-top:20px;
    text-align: center;
    background: black;
    padding-bottom: 20px
}


.h1-title{
    margin-bottoM: 20px;
    color: white;
    font-size: 60px;
    font-weight: 700;
}


@media (max-width: 400px ) {
    .box {
        width: 100%;
    }
}

@media (max-width: 450px ) {
    .login_box_wrapper {
        padding: 0px 10px 10px 5px;
    }
}


.login-tab {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    padding: 10px;
    margin-top: -10px;
    margin-left: 1px;
}

.login-tab .col {
    width: 100%;
    color: #fff;
    float: left;
    cursor: pointer;
    padding: 5px;
    padding-top: 8px;
}

.box .form-group {
    position: relative;
}

.box .form-group input {
    width: 100%;
    padding: 10px 0;
    font-size: 15px;
    padding-left: 15px;
    padding-top: 15px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #ffffff;
    outline: none;
    background: transparent;
}


.box .form-group input:-webkit-autofill,
.box .form-group input:-webkit-autofill:hover,
.box .form-group input:-webkit-autofill:focus {
    border: none;
    border-bottom: 1px solid #03a9f4;
    -webkit-text-fill-color: #ccc;
    transition: background-color 5000s ease-in-out 0s;
}

.box .form-group label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0px;
    font-size: 15px;
    color: #fff;
    pointer-events: none;
    transition: 0.5s;
}

.box .form-group input:focus ~ label,
.box .form-group input:valid ~ label {
    top: -20px;
    left: 0;
    color: #fff;
    font-size: 13px;
}

.remember-forgot-tab {
    margin-top: -10px;
    margin-bottom: 20px;
    line-height: 16px;
}

.checkbox label {
    float: left;
}

.forgot-pass label {
    float: right;
}

.remember-forgot-tab .checkbox label,
.remember-forgot-tab .forgot-pass a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.remember-forgot-tab label:hover,
.remember-forgot-tab a:hover {
    color: #fff;
    font-size: 17px;
}

.remember-forgot-tab .checkbox input {
    position: absolute;
    line-height: 16px;
    height: 15px;
    width: 15px;
}

.remember-forgot-tab .checkbox span {
    margin-left: 22px;
}

.box .form-group .toggle-password {
    float: right;
    position: relative;
    margin-top: -62px;
    margin-right: 10px;
    cursor: pointer;
    opacity: 0.85;
    color: #ccc;
}


.tab_link_active {
    color: #fff;
    border: 1px solid #fff;
    border-radius: .25rem;
}

.tab_link_inactive {
    color: #fff;
    border: none;
}

.btn_submits:hover {
    color: #fff;
    background:none;
    border:1px solid white;
}
.btn_submits {
    color: #fff;
    background:none;
    border:1px solid white;
}