@font-face {
  font-family: "CustomHelvetica";
  src: url(Helvetica.ttf);
}

* {
  font-family: "CustomHelvetica", Arial, Helvetica, sans-serif;
}

.input-group {
  display: flex;
  align-items: center;
}

body {
  background-image: linear-gradient(120deg, #121212 0%, #424242 100%);
}

label {
  color: #fff;
}

@media screen and (max-width: 500px) {
  .navbar a {
    float: none;
    display: block;
  }
}

.header {
  position: relative;
  background-clip: border-box;
  margin-top: 1.5rem;
  margin-left: 1rem;
  margin-right: 1rem;
  border-radius: 0.75rem;
  background-color: #00bbff;
  height: 14rem;
}

.info {
  border: none;
  padding: 1.5rem;
  text-align: center;
  color: #ffffff;
}

.footer {
  padding: 0.75rem;
  margin-top: -10px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 140, 255, 0.082);
}

.tag {
  font-weight: 300;
  font-size: 0.75rem;
  display: block;
  color: white;
}

.action {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: none;
  outline: none;
  color: rgb(255 255 255);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.75rem 1.5rem;
  background-color: #00bbff;
  border-radius: 0.5rem;
}

.input {
  font-size: 15px;
  text-indent: 15px;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 15px;
  background-color: rgba(255, 255, 255, 0.171);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15.2px);
  -webkit-backdrop-filter: blur(15.2px);
  color: #fff;
}

.input::placeholder {
  color: #fff;
}

textarea.input {
  resize: none;
}

select.input {
  appearance: none;
  background: transparent;
  background-image: linear-gradient(45deg, transparent 50%, #00bbff 50%);
  background-position: calc(100% - 20px) center;
  background-size: 15px 15px;
}

input[type="file"].input {
  display: none;
}

.custom-file-label::after {
  content: "Browse";
  background-color: #00bbff;
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
}

#fileListContainer {
  color: white;
}

.custom-file-input:focus ~ .custom-file-label::after {
  content: none;
}
