body {
    background-color: #fcf9fa;
    background-image: linear-gradient(135deg, #fcf9fa 10%, #e8f0f9 100%);
    background-size: cover;
}
.ada-box {
    background-color: #E8EFF7 !important;
}
.ada-link {
    color: #1e5ba8;
    font-size: 0.875rem;
    transition: color 0.2s ease-in-out;
}
    .ada-link:hover {
        color: #1A4D8F;
        text-decoration: none;
    }
.auth-card {
    max-width: 900px;
    margin: auto;
}

.info-box {
    background: #f8fbff;
    border-left: 4px solid #1e6bb8;
}

.form-control {
    height: 44px;
}

.btn-primary {
    background-color: #1e6bb8;
    border-color: #1e6bb8;
}

footer {
    font-size: 0.85rem;
    color: #6c757d;
}
/* Info Panel */
.info-panel {
    background: linear-gradient(to right, #e8eff7 0%, #ffffff 60%);
    border-left: 4px solid #1e5ba8;
    border-radius: 8px;
}

    /* Headings */
    .info-panel h4 {
        font-size: 1.35rem;
    }

/* Lists */
.info-list {
    padding-left: 1rem;
    margin-bottom: 0;
}

    .info-list li {
        list-style: disc;
        color: #5a6f89;
        font-size: 0.875rem;
        margin-bottom: 0;
    }

/*tabs*/
/* Tabs */
  .tabs-container {
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
  }

  .tabs-nav {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
  }

  .tab-btn {
    padding: 16px 24px;
    background: none;
    border: none;
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
  }

    .tab-btn:hover {
        color: #1e3a5f;
        text-decoration: none;
    }

  .tab-btn.active {
    color: #1e3a5f;
    border-bottom-color: black;
    font-weight: 500;
  }

  .tab-content {
    display: none;
    padding: 24px;
  }

  .tab-content.active {
    display: block;
  }