* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

.log_box {
    background-size: cover !important;
    display: flex;
    align-items: center;
    height: 100vh;
    justify-content: end;
    padding: 100px;
}
.overlap {
    position: absolute;
    width: 100vw;
    height: 100%;
    background: rgb(0, 0, 0, 30%);
    top: 0;
    left: 0;
}
h1 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 5px;
}

.log_box_col {
    width: 350px;
    background: #fff;
    padding: 30px 20px;
    box-shadow: 2px 2px 2px #1d6928;
    border-radius: 4px;
    min-height: 350px;
    z-index: 1;
}
.loadmsg {
    display: flex;
    align-items: center;
    height: 200px;
    font-size: 20px;
    flex-direction: column;
    justify-content: center;
}


select,
input {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid;
    margin: 5px 0;
}

.submit_btn {
    padding: 12px 10px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    background: #FFD333;
    border: none;
    color: #3D464D !important
}

.control-group {
    margin: 10px 0;
    position: relative;
}

#hide_pass,
#view_pass {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.label_box {
    display: flex;
    justify-content: space-between;
}

a {
    text-decoration: none;
}

.label_box a {
    font-weight: 600;
    color: red;
}

.mt-1 {
    margin-top: 10px;
}

.mb-1 {
    margin-bottom: 10px;
}
.alert {
    display: none;
    padding: 10px;
    background-color: #fff;
    line-height: 1;
    color: #000;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 300px;
    z-index: 2;
    min-height: 58px;
    box-shadow: 2px 2px 6px #000;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width:600px) {
    .log_box {
        flex-direction: column;
        padding: 20px;
        justify-content: center;
    }

    .log_box_col {
        width: 100%;
    }
}