.registration-container {
    width: auto;
    margin: 50px auto;
    background-color: #55cdde;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  h2 {
    text-align: center;
    color: #333;
  }

  table {
    width: 100%;
  }

  table input[type="text"],
  table input[type="password"],
  table input[type="submit"],
  table select {
    width: calc(100% - 22px);
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
  }

  table input[type="submit"] {
    background-color: #55cdde;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
  }

  table input[type="submit"]:hover {
    background-color: #3282bf;
  }

  b {
    color: #333;
  }

  td{
    border: 1px solid #fff;
    padding: 7px;
  }

  .field-icon {
    position: relative;
    float: right;
    top: 217px;
    right: 45px;
    z-index: 1;
}
  .fa-eye, .fa-eye-slash:hover{
    cursor: pointer;
}  