body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
}

/* container */
.baji-login-register {
    max-width: 420px;
    margin: auto;
    background: #0e0e0e;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0px 15px;
}

/* top header */
/* top header */
.baji-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    /* Sticky header */
    top: 0;
    /* Always stay on top */
    background: #0e0e0e;
    /* Same background to blend with container */
    padding: 10px 0;
    z-index: 1000;
    /* Stay above other elements */
}


.baji-top img {
    height: 35px;
}

.baji-top .home {
    font-size: 22px;
    color: #fff;
    text-decoration: none;
}

/* welcome image */
.welcome-img {
    margin: 20px 0;
    text-align: center;
}

.welcome-img img {
    max-width: 100%;
    height: auto;
}

/* tabs */
.tabs {
    display: flex;
    margin-top: 20px;
    border-bottom: 1px solid #333;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    cursor: pointer;
    font-size: 16px;
    color: #aaa;
}

.tab.active {
    border-bottom: 2px solid #00a86b;
    color: #fff;
}

/* forms */
.form-group {
    margin-top: 15px;
}

.form-group input {
    width: 94%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #1e1e1e;
    color: #fff;
    font-size: 15px;
}

.forgot {
    text-align: right;
    margin: 12px 0;
}

.forgot a {
    color: #00a86b;
    font-size: 14px;
    text-decoration: none;
}

.btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #006c44;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* Desktop version = hide */
@media (min-width: 768px) {
    .baji-login-register {
        display: none;
    }

    body {
        background: #000;
    }
}