.login-section {

    min-height: calc(100vh - 170px);
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg,#eef5ff,#ffffff);

}

.login-wrapper {

    display: flex;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.12);

}

.login-left {

    width: 50%;
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: #fff;
    padding: 60px;
    display: flex;
    align-items: center;

}

.login-badge {

    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,.15);
    margin-bottom: 25px;
    font-weight: 600;

}

.login-left h1 {

    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;

}

.login-left p {

    line-height: 1.8;
    opacity: .9;
    margin-bottom: 35px;

}

.login-features {

    list-style: none;
    padding: 0;
    margin: 0;

}

.login-features li {

    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 17px;

}

.login-features i {

    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    justify-content: center;
    align-items: center;

}

.login-right {

    width: 50%;
    padding: 60px;
    display: flex;
    align-items: center;

}

.login-card {

    width: 100%;

}

.login-card h2 {

    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;

}

.login-card p {

    color: #64748b;
    margin-bottom: 30px;

}

.form-control {

    height: 55px;
    border-radius: 12px;
    border: 1px solid #d7dce5;

}

.form-control:focus {

    border-color: #2563eb;
    box-shadow: 0 0 0 .2rem rgba(37,99,235,.15);

}

.btn-primary {

    height: 55px;
    border-radius: 12px;
    font-weight: 600;

}

.login-card a {

    text-decoration: none;

}

.login-card a:hover {

    text-decoration: underline;

}

@media (max-width: 991px) {

    .login-wrapper {

        flex-direction: column;

    }

    .login-left,
    .login-right {

        width: 100%;
        padding: 40px 30px;

    }

    .login-left {

        text-align: center;

    }

    .login-left h1 {

        font-size: 34px;

    }

}