body {
      font-family: Arial, sans-serif;
    }
    .navbar {
      padding: 1rem 0;
    }
    .form-section {
      padding: 4rem 0;
    }
    .form-section h1 {
      font-weight: bold;
    }
    .footer {
      background: #0d0d0d;
      color: #fff;
      padding: 3rem 0;
    }
    .footer a {
      color: #fff;
      text-decoration: none;
    }
    .footer a:hover {
      text-decoration: underline;
    }
    .disclaimer {
      font-size: 0.85rem;
      color: #666;
      margin-top: 1.5rem;
    }
    .custom-input::placeholder {
      color: #aaa; 
      opacity: 1;   
      font-size: 14px;
    }
    .nav-pills .nav-link:hover {
      transform: scale(1.05);
    }
    .nav-pills .nav-link.active {
      background-color: #161633;
      color: #fff;
    }
    .navbar-nav .nav-link {
      transition: transform 0.2s ease, color 0.2s ease;
    }
    .navbar-nav .nav-link:hover {
      transform: scale(1.1);    
    }
    footer {
      background: #000;
      padding: 40px 0;
      color: #bbb;
    }
    footer a {
      color: #bbb;
      text-decoration: none;
    }
    footer a:hover {
      color: #fff;
    }
    p{
        font-size: medium;
    }
    .disclaimer{
        font-size: 12px;
    }
    .btn-submit {
      background-color: #09bfde;
    }

    .btn-primary-outline {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #09bfde; 
    color: #09bfde; 
    background-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-outline:hover {
    color: #fff;
    background-color: #0c3a47; 
    border-color: #0c3a47;
}

.btn-primary-solid {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #09bfde;
    color: #fff;
    background-color: #09bfde; 
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-solid:hover {
    background-color: #0c3a47; 
    border-color: #0c3a47;
    color: #fff;
}