.allnote, td, th {  
    border: 1px solid #ddd;
    text-align: left;
  }
  
.allnote {
    border-collapse: collapse;
    width: 100%;
}
  
.allnote th, .allnote td {
    padding: 15px;
  }

/** form style */
.Tn_form_style input[type="text"],
.Tn_form_style input[type="email"],
.Tn_form_style select,
.Tn_form_style input[type="number"],
.Tn_form_style button[type="submit"] {
  width: calc(100% - 20px);
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.Tn_form_style button[type="submit"] {
  background-color: #4caf50;
  color: white;
  cursor: pointer;
}

.Tn_form_style button[type="submit"]:hover {
  /* Add your desired styles here */
  background-color: #45a049;
}
.allnote th {
    background: #1c6fec;
    color: #fff;
    border: 1px solid #fff;
}

.field-container {
    position: relative;
    margin-bottom: 20px;
}

.field-msg {
    display: none;
    position: absolute;
    left: 2px;
    bottom: -14px;
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;

    
}
.show {
    display: block;
}
.error {
    color: rgb(144, 19, 19);
}

.success {
    color: rgb(47, 129, 47);
}