.container {
  font-family: "Poppins", sans-serif;
  width: 40%;
  margin: auto;
  border: 1px solid gray;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.container h2 {
  font-size: 26px;
  margin: 0;
  margin-top: -20px;
  font-weight: 500;
}
.inputTags {
  width: 80%;
  margin: auto;
}
.inputTags h2 {
  font-size: 28px;
  text-align: center;
  margin-top: -8px;
}
.inputTags label {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}
.inputTags input {
  width: 90%;
  height: 36px;
  margin-bottom: 12px;
  font-size: 18px;
  outline: none;
}
.inputTags input::placeholder {
  font-size: 18px;
  padding: 0 5px;
}
#btn {
  width: 92%;
  height: 40px;
  background-color: #1a73e8;
  border: none;
  outline: none;
  font-size: 18px;
  margin: 14px 0px;
  cursor: pointer;
  color: white;
}
a {
  color: blue;
  text-decoration: none;
}
img {
  width: 30%;
  height: 20%;
}
#validPass {
  color: red;
  font-size: 18px;
  text-align: center;
  margin: 0;
  margin-bottom: -14px;
  display: none;
}
p {
  margin-top: 0px;
}
.img {
  width: 126px;
  overflow: hidden;
}
.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}
.custom-file-input::before {
  content: "Select some files";
  display: inline-block;
  background: linear-gradient(top, #f9f9f9, #e3e3e3);
  border: 1px solid #999;
  border-radius: 3px;
  padding: 5px 8px;
  outline: none;
  white-space: nowrap;
  cursor: pointer;
  text-shadow: 1px 1px #fff;
  font-weight: 700;
  font-size: 10pt;
}
.custom-file-input:hover::before {
  border-color: black;
}
.custom-file-input:active::before {
  background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

#imgPrev {
  width: 100%;
  margin-top: 6px;
  border-radius: 50%;
}
