* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #020b1f;
    min-height: 100vh;
    overflow-x: hidden;
}

.login-wrapper {
    min-height: 100vh;
}

/* LEFT SIDE */
.login-left {
    background: linear-gradient(135deg, #06234a 0%, #03142d 100%);
    position: relative;
    overflow: hidden;
}

.brand-logo {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4e73df, #00d2ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    box-shadow: 0 0 25px rgba(78, 115, 223, 0.5);
}

.brand-logo i {
    font-size: 32px;
    color: #fff;
}

.project-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-top: 20px;
}

.project-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    max-width: 500px;
    margin: 20px auto 0;
    line-height: 1.8;
}

.monitor-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 35px;
    margin-top: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-box {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, #4e73df, #00c6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 15px;
    color: #fff;
    font-size: 24px;
}

.feature-title {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin-top: 8px;
}

/* RIGHT SIDE */
.login-right {
    background: #010814;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-box {
    width: 100%;
    max-width: 450px;
}

.login-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.login-text {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 35px;
}

.form-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 10px;
}

.form-control {
    height: 55px;
    border-radius: 14px;
    background: #071a35;
    border: 1px solid #16345e;
    color: #fff;
    padding-left: 18px;
}

.form-control:focus {
    background: #071a35;
    color: #fff;
    border-color: #4e73df;
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.2);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.forgot-link {
    color: #4e73df;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.forgot-link:hover {
    color: #fff;
}

.login-btn {
    height: 55px;
    border-radius: 14px;
    background: linear-gradient(135deg, #00c9a7, #00d2ff);
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.3);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.divider:not(:empty)::before {
    margin-right: 10px;
}

.divider:not(:empty)::after {
    margin-left: 10px;
}

.social-btn {
    height: 52px;
    border-radius: 14px;
    border: 1px solid #1c3f6d;
    background: transparent;
    color: #fff;
    transition: 0.3s;
}

.social-btn:hover {
    background: #071a35;
    border-color: #4e73df;
}

.bottom-text {
    text-align: center;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.6);
}

.bottom-text a {
    color: #4e73df;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media(max-width:991px) {

    .login-left {
        display: none !important;
    }

    .login-title {
        font-size: 38px;
    }
}