.submitBTN {
    width: 100%;
    padding: 12px;
    background-color: #004754;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  .submitBTN:hover {
    background-color: #bebd00;
    }

    .formContent {
        margin-bottom: 20px;
        text-align: left;
      }

.container {
    width: 350px;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: pulse 2s infinite;
    transition: right 0.5s ease;
}

.container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
  }

input[type="text"],
input[type="email"],
input[type="date"],
input[type="time"],
input[type="tel"],
select[name="type"] {
  width: calc(100% - 20px);
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}