body {
    background-color: #f8f9fa;
}

.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 100px; /* Adjust logo size */
    height: auto;
}

.company-name {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
    color: #007bff;
}

.nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: #495057;
}

.nav-tabs .nav-link.active {
    border-bottom: 2px solid #007bff;
    color: #007bff;
}

.form-control {
    border-radius: 4px;
    padding-left: 40px; /* Add padding for icons */
}

.btn-primary {
    border-radius: 4px;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}
.form-group {
    position: relative; /* Required for positioning icons */
}

.virtual-keyboard {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.virtual-keyboard button {
    width: 50px;
    height: 50px;
    margin: 5px;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f8f9fa;
    cursor: pointer;
}

.virtual-keyboard button:hover {
    background: #e9ecef;
}

.virtual-keyboard button.return-key {
    width: 100px; /* Wider button for Return key */
}

.keyboard-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    cursor: pointer;
}