body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f9fa;
}

#form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.logo-container a {
    text-decoration: none;
    color: #000;
}

.form-group {
    margin-bottom: 1rem;
    width: 100%;
}
.form-group .form-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.note-label {
    font-weight: 600;
    margin: 1rem 0;
    color: #666;
}

label.text-secondary {
    color: #6c757d;
    display: block;
    margin-bottom: 0.5rem;
}

input.form-control {
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input.form-control:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.submit-btn-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 1rem;
}

/* Tab Styles */
.nav-tab-wrapper {
    border-bottom: 1px solid #ccc;
    margin: 0;
    padding-top: 9px;
    padding-bottom: 0;
    line-height: inherit;
    width: 100%;
}

.nav-tab {
    float: left;
    border: 1px solid #ccc;
    border-bottom: none;
    margin-left: .5em;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 24px;
    background: #e5e5e5;
    color: #555;
    text-decoration: none;
}

.nav-tab:hover,
.nav-tab:focus {
    background-color: #fff;
    color: #444;
}

.nav-tab-active {
    margin-bottom: -1px;
    background: #fff;
    border-bottom: 1px solid #fff;
}

.tab-content {
    display: none;
    padding: 20px 0;
    width: 100%;
}

.tab-content.active {
    display: block;
}

/* FAQ Styles */
.faq-section {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-question {
    font-weight: 600;
    color: #2271b1;
    margin-bottom: 10px;
}

.faq-answer {
    color: #555;
    line-height: 1.5;
}

.tab-container {
    width: 100%;
}

.verified-icon {
    color: white;
    font-size: 25px;
    margin-left: 10px;
    /* vertical-align: middle; */
    align-items: center;
    /* padding: 10px; */
    display: flex;
    border-radius: 50%;
    height: 20px;
    background-color: green;
    width: 20px;
}

/* HTML: <div class="loader"></div> */
.loader {
    display: none;
    height: 4px;
    width: 130px;
    --c:no-repeat linear-gradient(#007bff 0 0);
    background: var(--c),var(--c),#d7b8fc;
    background-size: 60% 100%;
    animation: l16 3s infinite;
  }
  @keyframes l16 {
    0%   {background-position:-150% 0,-150% 0}
    66%  {background-position: 250% 0,-150% 0}
    100% {background-position: 250% 0, 250% 0}
  }

