/* Company Dashboard Styles */
.erp-main-container {
    max-width: 1400px;
    margin: 0 auto;
}
.table tbody td.actions-td button {
    padding: 0;
    margin: 0;
    background-color: transparent;
}
.action-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
.edit-profile-container {
    min-height: 100vh;
    padding: 20px 0;
}

.form-group-modern {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label-modern {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.form-label-modern i {
    color: #667eea;
    width: 16px;
}

.form-control-modern {
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.form-control-modern:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.form-control-modern:disabled,
.form-control-modern[readonly] {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
}

.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.card-header {
    border-radius: 20px 20px 0 0 !important;
    padding: 20px 30px;
    border: none;
}

.card-body {
    padding: 30px;
}

.text-primary {
    color: #667eea !important;
}

.border-bottom {
    border-color: #e1e8ed !important;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: #6c757d;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-light {
    border-radius: 12px;
    padding: 8px 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.alert {
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.alert-success {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
    color: #fff;
}

.alert-danger {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: #fff;
}

/* Section Headers */
h5.text-primary {
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

h5.text-primary i {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .edit-profile-container {
        padding: 10px;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .form-group-modern {
        margin-bottom: 1rem;
    }
}

/* Animation for form focus */
.form-control-modern:focus + .form-label-modern {
    color: #667eea;
}

/* Loading spinner */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Readonly field styling */
input[readonly].form-control-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    cursor: not-allowed;
}

/* Button group spacing */
.text-end .btn {
    margin-left: 8px;
}

/* Card shadow on hover */
.card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Search Container Styles */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding-left: 45px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding-right: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.search-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.search-input:focus + .search-icon {
    color: #667eea;
}

/* Filter dropdown styling */
#status-filter {
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#status-filter:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

/* Clear button styling */
.btn-outline-secondary {
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #fff;
}

.btn-outline-secondary:hover {
    background: #6c757d;
    border-color: #6c757d;
    color: #fff;
    transform: translateY(-2px);
}

/* Table styling improvements */
.table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.table thead th {
    background: black;
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 15px;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.table tbody td {
    padding: 15px;
    border-color: #e1e8ed;
    vertical-align: middle;
}

/* Status badges */
.status-active {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-terminated {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Action buttons in table */
.btn-sm {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* No results message */
#no-results-row td {
    padding: 40px 20px;
    font-size: 16px;
    color: #6c757d;
}

/* Responsive search */
@media (max-width: 768px) {
    .search-container {
        margin-bottom: 15px;
    }
    
    #status-filter {
        margin-bottom: 15px;
    }
}

/* ===== LOGIN & SIGNUP PAGES STYLES ===== */

/* Company Login Styles */
.company-login-shortcode {
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-login-container {
    width: 100%;
    max-width: 100%;
}

.company-login-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.50);
    overflow: hidden;
    transition: all 0.3s ease;
}

.company-login-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e1e8ed;
}

.company-login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.company-login-header h3 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.company-login-header p {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
}

.company-login-body {
    padding: 40px 30px;
}

.company-form-group {
    margin-bottom: 25px;
    position: relative;
}

.company-form-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 14px;
    gap: 8px;
}

.company-form-label svg {
    color: #667eea;
    flex-shrink: 0;
}

.company-form-control::placeholder {
    color: #adb5bd;
    font-size: 15px;
}

.company-login-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.company-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.company-login-btn:active {
    transform: translateY(0);
}

.company-login-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e1e8ed;
}

.company-login-footer p {
    color: #6c757d;
    margin: 0;
}

.company-register-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.company-register-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Company Signup Styles */

.company-signup-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.company-signup-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    gap: 40px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(0 0 0 / 60%);
    transition: all 0.3s ease;
}

.progress-step.active {
    color: #000;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(0 0 0 / 20%);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.company-signup-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.50);
    overflow: hidden;
}

.step-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e1e8ed;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.step-header h3 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-header p {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
}

.step-body {
    padding: 40px 30px;
}

.company-alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 500;
}

.company-alert.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #c3e6cb;
}

.company-alert.info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e1e8ed;
}

.section-header svg {
    color: #667eea;
}

.company-signup-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    margin-top: 30px;
}

.company-signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.company-signup-footer {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-top: 1px solid #e1e8ed;
}

.company-signup-footer p {
    color: #6c757d;
    margin: 0;
}

.company-signup-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.company-signup-footer a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.otp-input {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 8px;
}

.resend-btn {
    background: none;
    border: none;
    color: #667eea;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
    font-size: 14px;
    text-decoration: none;
}

.resend-btn:hover {
    color: #764ba2;
}

/* Employee Login Styles */
.atwork-employee-login-shortcode {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shortcode-login-container {
    width: 100%;
    max-width: 100%;
}

.shortcode-login-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.50);
    overflow: hidden;
    transition: all 0.3s ease;
}

.shortcode-login-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e1e8ed;
}

.shortcode-login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.shortcode-login-header h3 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.shortcode-login-header p {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
}

.shortcode-login-body {
    padding: 40px 30px;
}

.shortcode-form-group {
    margin-bottom: 25px;
    position: relative;
}

.shortcode-form-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 14px;
    gap: 8px;
}

.shortcode-form-label svg {
    color: #28a745;
    flex-shrink: 0;
}

.shortcode-form-control::placeholder {
    color: #adb5bd;
    font-size: 15px;
}

.shortcode-login-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.shortcode-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

.shortcode-login-btn:active {
    transform: translateY(0);
}

.shortcode-login-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e1e8ed;
}

.shortcode-login-footer p {
    color: #6c757d;
    margin: 0;
}

.shortcode-register-link {
    color: #28a745;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.shortcode-register-link:hover {
    color: #20c997;
    text-decoration: underline;
}

/* Employee Signup Styles */

.signup-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.signup-step-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.50);
    overflow: hidden;
    margin-bottom: 30px;
}

.signup-step-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e1e8ed;
}

.signup-step-header.step1 .step-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.signup-step-header h3 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.signup-step-header p {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
}

.signup-step-body {
    padding: 40px 30px;
}

.form-group-custom {
    margin-bottom: 25px;
    position: relative;
}

.form-label-custom {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 14px;
    gap: 8px;
}

.form-label-custom svg {
    color: #28a745;
    flex-shrink: 0;
}

.form-control-custom {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-control-custom:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1);
    outline: none;
    transform: translateY(-1px);
}

.form-control-custom::placeholder {
    color: #adb5bd;
    font-size: 15px;
}

.code-input {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 8px;
}

.form-help-text {
    color: #6c757d;
    font-size: 13px;
    margin-top: 8px;
    font-style: italic;
}

.btn-custom {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-step1 {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.btn-step1:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

/* Validation Styles */
.validation-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

.company-form-control.error,
.shortcode-form-control.error,
.form-control-custom.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.company-form-control.success,
.shortcode-form-control.success,
.form-control-custom.success {
    border-color: #28a745;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1);
}

/* Optional field styling */
.company-form-label.optional::after,
.shortcode-form-label.optional::after,
.form-label-custom.optional::after {
    content: " (Optional)";
    color: #6c757d;
    font-weight: 400;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .company-login-header,
    .shortcode-login-header,
    .step-header,
    .signup-step-header {
        padding: 30px 20px 20px;
    }
    
    .company-login-body,
    .shortcode-login-body,
    .step-body,
    .signup-step-body {
        padding: 30px 20px;
    }
    
    .company-login-icon,
    .shortcode-login-icon,
    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .company-login-header h3,
    .shortcode-login-header h3,
    .step-header h3,
    .signup-step-header h3 {
        font-size: 24px;
    }
    
    .company-signup-progress {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .progress-step span {
        font-size: 14px;
    }
    
    .section-header {
        font-size: 16px;
        margin: 25px 0 15px;
    }
}

@media (max-width: 480px) {
    .company-form-control,
    .shortcode-form-control,
    .form-control-custom {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .company-login-btn,
    .shortcode-login-btn,
    .company-signup-btn,
    .btn-custom {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .otp-input,
    .code-input {
        font-size: 20px;
        letter-spacing: 4px;
    }
}

/* Loading States */
.company-login-btn:disabled,
.shortcode-login-btn:disabled,
.company-signup-btn:disabled,
.btn-custom:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Animation for form elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.company-form-group,
.shortcode-form-group,
.form-group-custom {
    animation: fadeInUp 0.6s ease forwards;
}

.company-form-group:nth-child(1) { animation-delay: 0.1s; }
.company-form-group:nth-child(2) { animation-delay: 0.2s; }
.company-form-group:nth-child(3) { animation-delay: 0.3s; }

.shortcode-form-group:nth-child(1) { animation-delay: 0.1s; }
.shortcode-form-group:nth-child(2) { animation-delay: 0.2s; }
.shortcode-form-group:nth-child(3) { animation-delay: 0.3s; }

.form-group-custom:nth-child(1) { animation-delay: 0.1s; }
.form-group-custom:nth-child(2) { animation-delay: 0.2s; }
.form-group-custom:nth-child(3) { animation-delay: 0.3s; }
/* ===== ATWORK ADMIN LOGIN - BOOTSTRAP ENHANCED STYLES ===== */

/* Page wrapper with gradient background */
body:has(.container .card:has(#admin-login-form)) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Container styling */
.container:has(#admin-login-form) {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 1rem;
}

/* Enhanced card styling */
.card:has(#admin-login-form) {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:has(#admin-login-form):hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

/* Card header styling */
.card:has(#admin-login-form) .card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
}

.card:has(#admin-login-form) .card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.card:has(#admin-login-form) .card-header h3 {
    color: #1a202c;
    font-weight: 700;
    font-size: 1.75rem;
    margin: 0;
    background: linear-gradient(135deg, #1a202c 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card body styling */
.card:has(#admin-login-form) .card-body {
    padding: 2rem 1.5rem;
}

/* Form labels */
.card:has(#admin-login-form) .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
}

/* Enhanced form controls */
.card:has(#admin-login-form) .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.card:has(#admin-login-form) .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 8px 25px rgba(0, 0, 0, 0.1);
    outline: none;
    transform: translateY(-2px);
}

.card:has(#admin-login-form) .form-control::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.card:has(#admin-login-form) .form-control:hover {
    border-color: #d1d5db;
    transform: translateY(-1px);
}

/* Enhanced button styling */
.card:has(#admin-login-form) .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    padding: 0.875rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.card:has(#admin-login-form) .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.card:has(#admin-login-form) .btn-primary:hover::before {
    left: 100%;
}

.card:has(#admin-login-form) .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(102, 126, 234, 0.4);
}

.card:has(#admin-login-form) .btn-primary:active {
    transform: translateY(-1px);
}

.card:has(#admin-login-form) .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.card:has(#admin-login-form) .btn-primary:focus {
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.3), 0 12px 35px rgba(102, 126, 234, 0.3);
}

/* Form group spacing */
.card:has(#admin-login-form) .mb-3 {
    margin-bottom: 1.75rem;
}

/* Alert styling */
.card:has(#admin-login-form) .alert {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card:has(#admin-login-form) .alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border-left: 4px solid #10b981;
}

.card:has(#admin-login-form) .alert-danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

/* Form validation states */
.card:has(#admin-login-form) .form-control.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.card:has(#admin-login-form) .form-control.is-valid {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container:has(#admin-login-form) {
        padding: 1rem 0.5rem;
    }
    
    .card:has(#admin-login-form) .card-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .card:has(#admin-login-form) .card-body {
        padding: 1.5rem 1rem;
    }
    
    .card:has(#admin-login-form) .card-header h3 {
        font-size: 1.5rem;
    }
    
    .card:has(#admin-login-form) .form-control {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .card:has(#admin-login-form) .btn-primary {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container:has(#admin-login-form) {
        padding: 0.5rem 0.25rem;
    }
    
    .card:has(#admin-login-form) {
        border-radius: 16px;
        margin: 0.5rem;
    }
    
    .card:has(#admin-login-form) .card-header {
        padding: 1.25rem 0.75rem 0.75rem;
    }
    
    .card:has(#admin-login-form) .card-body {
        padding: 1.25rem 0.75rem;
    }
    
    .card:has(#admin-login-form) .card-header h3 {
        font-size: 1.25rem;
    }
    
    .card:has(#admin-login-form) .mb-3 {
        margin-bottom: 1.5rem;
    }
}

/* Animation for form elements */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card:has(#admin-login-form) .mb-3 {
    animation: slideInUp 0.6s ease forwards;
}

.card:has(#admin-login-form) .mb-3:nth-child(1) { animation-delay: 0.1s; }
.card:has(#admin-login-form) .mb-3:nth-child(2) { animation-delay: 0.2s; }
.card:has(#admin-login-form) .mb-3:nth-child(3) { animation-delay: 0.3s; }

/* Card entrance animation */
@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card:has(#admin-login-form) {
    animation: cardEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .card:has(#admin-login-form),
    .card:has(#admin-login-form) .form-control,
    .card:has(#admin-login-form) .btn-primary,
    .card:has(#admin-login-form) .mb-3 {
        transition: none;
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .card:has(#admin-login-form) {
        border: 2px solid #000;
        background: #fff;
    }
    
    .card:has(#admin-login-form) .form-control {
        border: 2px solid #000;
    }
    
    .card:has(#admin-login-form) .btn-primary {
        background: #000;
        border: 2px solid #000;
    }
}

/* Focus visible for keyboard navigation */
.card:has(#admin-login-form) .form-control:focus-visible,
.card:has(#admin-login-form) .btn-primary:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    body:has(.container .card:has(#admin-login-form)) {
        background: #fff;
    }
    
    .card:has(#admin-login-form) {
        box-shadow: none;
        border: 1px solid #000;
    }
}

/* Loading state enhancement */
.card:has(#admin-login-form) .btn-primary.loading {
    pointer-events: none;
    position: relative;
}

.card:has(#admin-login-form) .btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Fix for admin login form centering and width */
.container:has(#admin-login-form) .col-md-6 {
    max-width: 400px !important;
    width: 100% !important;
    flex: none !important;
}

.container:has(#admin-login-form) .row {
    justify-content: center !important;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .container:has(#admin-login-form) .col-md-6 {
        max-width: 400px !important;
        width: 400px !important;
    }
}

@media (max-width: 767px) {
    .container:has(#admin-login-form) .col-md-6 {
        max-width: 350px !important;
        width: 90% !important;
    }
}

/* ===== ATWORK ADMIN REGISTER - MODERN RESPONSIVE DESIGN ===== */

/* Page wrapper with gradient background */
.atwork-register-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main container */
.register-container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Register card */
.register-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInLeft 0.8s ease-out;
}

.register-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.2);
}

/* Register header */
.register-header {
    padding: 3rem 2.5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.register-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.brand-logo i {
    font-size: 2.5rem;
    color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-logo h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #1a202c 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem;
}

.register-header p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Register body */
.register-body {
    padding: 2.5rem;
}

/* Form styling */
.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    animation: fadeInUp 0.6s ease forwards;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.form-label i {
    color: #667eea;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: #fff;
    outline: none;
}

.form-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-input:hover {
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.form-hint {
    color: #6b7280;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Register button */
.register-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 16px;
    padding: 1rem 2rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.register-btn:hover::before {
    left: 100%;
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(102, 126, 234, 0.4);
}

.register-btn:active {
    transform: translateY(-1px);
}

.register-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.register-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Register footer */
.register-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.register-footer p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}

.login-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.login-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.login-link:hover::after {
    width: 100%;
}

.login-link:hover {
    color: #764ba2;
}

/* Features section */
.register-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: slideInRight 0.8s ease-out;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    color: #fff;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    opacity: 0.9;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #fff;
}

.feature-item p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
    line-height: 1.5;
}

/* Alert styling */
.alert {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1060;
    animation: slideInDown 0.3s ease-out;
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46 !important;
    border-left: 4px solid #10b981;
}

.alert-danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b !important;
    border-left: 4px solid #ef4444;
}

.alert-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e !important;
    border-left: 4px solid #f59e0b;
}

.alert-info {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af !important;
    border-left: 4px solid #3b82f6;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form validation states */
.form-input.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-input.is-valid {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .register-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .register-features {
        display: none;
    }
}

@media (max-width: 768px) {
    .atwork-register-page {
        padding: 1rem 0.5rem;
    }
    
    .register-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .register-body {
        padding: 2rem 1.5rem;
    }
    
    .brand-logo h1 {
        font-size: 1.75rem;
    }
    
    .register-header h2 {
        font-size: 1.5rem;
    }
    
    .form-input {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .register-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .atwork-register-page {
        padding: 0.5rem 0.25rem;
    }
    
    .register-card {
        border-radius: 20px;
        margin: 0.5rem;
    }
    
    .register-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .register-body {
        padding: 1.5rem 1rem;
    }
    
    .brand-logo {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .brand-logo h1 {
        font-size: 1.5rem;
    }
    
    .register-header h2 {
        font-size: 1.25rem;
    }
    
    .form-group {
        gap: 1.25rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .register-card,
    .register-features,
    .form-group,
    .form-input,
    .register-btn,
    .feature-item {
        transition: none;
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .register-card {
        border: 2px solid #000;
        background: #fff;
    }
    
    .form-input {
        border: 2px solid #000;
    }
    
    .register-btn {
        background: #000;
        border: 2px solid #000;
    }
    
    .feature-item {
        border: 2px solid #fff;
        background: rgba(0, 0, 0, 0.8);
    }
}

/* Focus visible for keyboard navigation */
.form-input:focus-visible,
.register-btn:focus-visible,
.login-link:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Loading state enhancement */
.register-btn.loading {
    pointer-events: none;
    position: relative;
}

.register-btn.loading .btn-text {
    opacity: 0.7;
}

.register-btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Print styles */
@media print {
    .atwork-register-page {
        background: #fff;
        color: #000;
    }
    
    .register-card {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .register-features {
        display: none;
    }
}

ul#adminTabs {
    list-style-type: none;
}

.search-filter-panel .search-box-enhanced .search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #6c757d;
    gap: 10px;
    padding: 0 15px;
}

.search-filter-panel .search-box-enhanced .search-input-wrapper input {
    width: 100%;
    padding: 0;
    border: 0;
    height: 60px;
    max-width: 100%;
}

.search-filter-panel .search-box-enhanced .search-input-wrapper .search-clear-btn {
    padding: 0;
    margin: 0;
    background-color: transparent;
}

.search-filter-panel .search-box-enhanced {
    position: relative;
}

/* Container */
.search-filter-panel .search-box-enhanced  .search-suggestions {
  position: absolute;
  top: 100%; /* appears below input */
  left: 0;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 5px 0;
  font-family: Arial, sans-serif;
}

/* Individual item */
.search-filter-panel .search-box-enhanced  .suggestion-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  font-size: 14px;
  color: #333;
}

/* Hover state */
.search-filter-panel .search-box-enhanced  .suggestion-item:hover {
  background: #f3f6ff;
  color: #1a73e8;
}

/* Icon */
.search-filter-panel .search-box-enhanced  .suggestion-icon {
  font-size: 16px;
  color: #666;
}

.search-filter-panel  .filter-dropdown select{
    border-radius: 0 !important;
    width: 100% !important;
    height: 60px !important;
    border: 1px solid #6c757d !important;
}

.input-group .password-strength {
    order: 3;
}

.input-group  button {
    margin: 0;
    border-left: 0 !important;
    border-width: 1px;
    border-color: #ddd;
    padding: 12px 16px;
}

.input-group  button:hover,
.input-group  button:focus,
.input-group  button:active{
    border-color: #ddd !important;
}

.input-group input {
    width: calc(100% - 53px) !important;
    border-right: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.input-group  input:-webkit-autofill,
.input-group  input:-webkit-autofill:hover, 
.input-group  input:-webkit-autofill:focus, 
.input-group  input:-webkit-autofill:active{
    -webkit-background-clip: text;
    -webkit-text-fill-color: #000;
} 

.input-group input:focus {
    box-shadow: none !important;
}