body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
  }
  
  .container {
    max-width: 1200px;
    margin: 20px auto;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #ddd;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .left-section {
    min-height: 100%;
  }
  
  .left-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
  }
  
  .left-section p {
    font-size: 1.2rem;
    color: #333;
  }
  
  .right-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding: 30px;
  }
  
  .switch-buttons .btn {
    font-size: 1rem;
    font-weight: 600;
  }
  
  .switch-buttons .btn.active {
    background-color: #ffa100;
    color: #333;
  }
  
  .form-container {
    display: block;
    transition: all 0.3s ease-in-out;
  }
  
  .form-container.d-none {
    display: none;
  }
  
  .form-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .form-control {
    border: 1px solid #ccc;
    padding: 12px 15px;
    font-size: 1rem;
    border-radius: 25px;
    transition: border-color 0.3s ease-in-out;
  }
  
  .form-control:focus {
    border-color: #ffa100;
    box-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
  }
  
  .form-select {
    padding: 10px 15px;
    border-radius: 25px;
    transition: border-color 0.3s ease-in-out;
  }
  
  .form-select:focus {
    border-color: #ffa100;
    box-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
  }
  
  .btn-primary {
    background-color: #333;
    border-color: #333;
    color: #fff;
  }
  
  .btn-primary:hover {
    background-color: #555;
    border-color: #555;
  }
  
  .btn-warning {
    background-color: #ffa100;
    border-color: #ffa100;
  }
  
  .btn-warning:hover {
    background-color: #ffa100;
    border-color: #ffa100;
  }
  
  .additional-info {
    color: #000;
    
  }
  
  /* Mobile Responsive Design */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
  
    .left-section {
      order: 2;
      text-align: center;
      padding: 20px;
    }
  
    .right-section {
      order: 1;
    }
  
    .switch-buttons {
      justify-content: center;
    }
  
    .switch-buttons .btn {
      margin: 0 10px;
    }
  }

  @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');

/* Keyframes for Animation */
@keyframes showTopText {
  0% { transform: translate3d(0, 100%, 0); }
  40%, 60% { transform: translate3d(0, 50%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes showBottomText {
  0% { transform: translate3d(0, -100%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* Animated Title Styling */
.animated-title {
  font-family: 'Nunito', Arial, sans-serif;
  text-align: center;
  height: 20vh;
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

.animated-title > div {
  height: 50%;
  overflow: hidden;
  position: relative;
}

.animated-title > div div {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}

.animated-title > div div span {
  display: block;
}

.animated-title > div.text-top {
  border-bottom: 2px solid #000;
}

.animated-title > div.text-top div {
  animation: showTopText 1s ease-in-out;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  transform: translate(0, 100%);
}

.animated-title > div.text-top div span:first-child {
  color: #000000;
}

.animated-title > div.text-bottom div {
  animation: showBottomText 1s ease-in-out;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
  transform: translate(0, -100%);
}
