@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #f7f7f7;
  margin: 25px 30px;
}

.wrapper {
  background: #fff;
  width: 200vh;
  border-radius: 16px;
  box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1),
    0 32px 64px -48px rgba(0, 0, 0, 0.5);
}

.form {
  padding: 25px 30px;
}
.form header {
  font-size: 25px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
}

.form header .logo {
  width: 30%;
}

.form header .hcclogo {
  height: 20%;
  float: right;
}

/* .form .logo {
  width: 50px;
} */
.form form {
  margin: 20px 0;
}
.form form .error-txt {
  color: #721c24;
  background: #f8d7da;
  padding: 8px 10px;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 10px;
  border: 1px solid #f5c6cb;
}

.form form .field {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.form form .field label {
  margin-bottom: 2px;
}

.form form .input input {
  outline: none;
}
.form form .input input {
  height: 40px;
  width: 100%;
  font-size: 16px;
  padding: 0 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.form form .button input {
  margin-top: 13px;
  height: 45px;
  border: none;
  font-size: 17px;
  font-weight: 500;
  background: #333;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.form .link {
  width: 100%;
  text-align: center;
  margin: 10px 0;
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form .link .link-icon {
  width: 40%;
}
.form .link a {
  color: #333;
}
.form .link a:hover {
  text-decoration: underline;
}

.record {
  width: 100%;
  border-bottom: 2px solid #333;
}

.record table {
  width: 100%;
}

.record .myHeight {
  height: 60px;
  font-size: 18px;
}
.record table .colwidth80 {
  width: 80%;
}
.help-text {
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 22px;
  border-bottom: 2px solid #333;
  font-weight: 600;
}

@media only screen and (max-width: 600px) {
  .wrapper {
    background: #fff;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1),
      0 32px 64px -48px rgba(0, 0, 0, 0.5);
  }

  .form header .logo {
    width: 50%;
  }

  .form header .hcclogo {
    
    width: 20%;
    float: right;
  }
  .form .link {
    width: 100%;
    text-align: center;
    margin: 10px 0;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .form .link .link-icon {
    width: 20%;
  }
  .form .link a {
    color: #333;
  }
  .form .link a:hover {
    text-decoration: underline;
  }

  .record {
    width: 100%;
    overflow-x: auto;
    border-bottom: 2px solid #333;
  }
  .record table {
    width: 100%;
  }
  .record table .colwidth80 {
    width: 8.33%;
  }
}
