.b2b-login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f7f9;
    padding: 20px;
    font-family: sans-serif;
}

.login-container {
    width: 100%;
    max-width: 450px;
}

.login-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo {
    height: 50px;
    margin-bottom: 15px;
}

.login-header h2 {
    font-size: 24px;
    color: #0b1c39; /* Necabs Dark Blue */
}

.login-header h2 span {
    color: #df0617; /* Necabs Red */
}

.login-header p {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

/* Form Styling */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: #df0617;
    outline: none;
    box-shadow: 0 0 5px rgba(223, 6, 23, 0.1);
}

.form-options {
    margin-bottom: 20px;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: #df0617;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    background: #b30512;
}

/* New Partner Section */
.new-partner-box {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.new-partner-box p {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
}

.register-link {
    color: #df0617;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

.register-link:hover {
    text-decoration: underline;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .login-box {
        padding: 30px 20px;
    }
    
    .login-header h2 {
        font-size: 20px;
    }
}