.container {
    overflow-x: hidden;
  }
  
  .form {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
  }
  
  .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    color: #464646;
  }
  
  .error {
    color: #dc2626;
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 8px;
  }
  
  .success {
    color: #16a34a;
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 8px;
  }
  
  .inputContainer {
    margin-bottom: 8px;
    margin-left: 16px;
    margin-right: 16px;
  }
  
  .input {
    width: 100%;
    padding: 6px 11px;
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    font-size: 14px;
    border: 1px solid #d1d5db;
    outline: none;
  }
  
  .input::placeholder {
    color: #6b7280;
  }
  
  .input:focus {
    border-color: #1e4d5a;
    box-shadow: 0 0 0 1px #1e4d5a;
  }
  
  .buttonContainer {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  
  .submitButton {
    width: 205px;
    height: 32px;
    border-radius: 4px;
    background-color: #1e4d5a;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 8px;
    margin-left: 16px;
    margin-right: 16px;
    border: none;
    outline: none;
    transition: background-color 0.2s ease;
  }
  
  .submitButton:hover {
    background-color: #2d5a6a;
  }
  
  .submitButton:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
  }
  
  .submitButton:disabled:hover {
    background-color: #9ca3af;
  }
  
  /* Media Queries for responsive design */
  @media (min-width: 768px) {
    .title {
      font-size: 24px;
    }
    
    .inputContainer {
      margin-left: 0;
      margin-right: 0;
    }
    
    .submitButton {
      margin-left: 0;
      margin-right: 0;
    }
  }