body{
    background:#0e0d0d;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.container, .container-fluid, .row{
    margin: 0;
    padding: 0;
}
a:hover{
    text-decoration: none;
}
.wrapper-login{
    background: #0e0d0d;
    padding: 30px 10px;
    text-align: center;
}
.wrapper-login h1{
    color: #fff;
    font-family: sans-serif;
    font-size: 28px;
    font-weight: bolder;
}
.wrapper-box{
    background: #fff;
    border-radius: 5px;
    /* height: 450px; */
    margin-top: 15px;
    padding-top: 10px;
}
.wrapper-box h1{
    color: #000;
    margin-bottom: 20px;
}
.form-box{
    /* background: red; */
    margin: 3px auto;
    width: 90%;
}
.form-box label{
    display: block;
    margin-top: 10px;
    text-align: left;
}
.form-box input[type="text"], input[type="email"], input[type="password"], select{
    padding: 10px;
    width: 100%;
}
.form-box input[type="checkbox"]{
    margin: 0;
    margin-left: -282px;
    padding: 0;
}
.form-box input[type="submit"]{
    background: #28b463;
    border: none;
    border-radius: 3px;
    color: #fff;
    outline: none;
    padding: 10px;
    width: 100%;
}
.alert-bad{
    background: #2c3034;
    border-left: 2px solid red;
    color:#fff;
}
#reg-check{
    margin-left:-165px;
}
/* ===== (for notification message) ===== */
.invest-popup-notification{
    background: rgba(0, 0, 0, .5);
    display: block;
    height: 100vh;
    position: fixed;
    left:0;
    top: 0;
    width: 100vw;
}
.invest-popup-notification.active{
    display: none;
}
.invest-popup-notification .main-box{
    background: #22242A;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
}
.invest-popup-notification .main-box .head{
    background: #22242A;
    border-bottom: 1px solid #fff;
    color: #F8F9FA;
    height: 50px;
}
.invest-popup-notification .main-box .head .close{
    color: #F8F9FA;
    cursor:pointer;
}
.invest-popup-notification .main-box .bottom{
    background: #22242A;
    color: #F8F9FA;
    height: auto;
    padding: 30px 20px;
}
.invest-popup-notification .main-box .bottom .msg{
    background: #22242A;
    color:#F8F9FA;
    height: auto;
    margin-bottom: 20px;
    width: 100%;
}
.invest-popup-notification .main-box .bottom .btn{
    background: #F8F9FA;
    color:#22242A;
    padding: 12px 15px;
    width: 100px;
}
.invest-popup-notification .main-box form .text{
    color: #F8F9FA;
    margin-bottom: 0px;
    margin-top: 10px;
    margin-left: 23px;
    width: 100%;
}

/* ==================== Mobile View ==================== */
@media (max-width: 760px){
    .form-box input[type="checkbox"]{
        margin: 0;
        margin-left: -235px;
        padding: 0;
    }
    #reg-check{
        margin-left:-115px;
    }
    .invest-popup-notification .main-box{
        width: 400px;
    }
}