@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes animatezoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.wrapper {
  background-color: rgb(240, 240, 240);
  transition: all 0.5s ease-out;
}
.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}
.textUeber {
  font-size: 1.8em;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgb(80, 80, 80);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

form {
  width: 40%;
  padding-top: 3%;
  padding-bottom: 1%;
  padding-left: 5%;
  padding-right: 5%;
  font-size: 1.1em;
  font-weight: 500;
  color: rgb(50, 50, 50);
  text-shadow: 0 1px 15px rgba(0, 0, 0, 0.5);
  font-family: inherit;
  border-radius: 10px;
  background: rgb(200, 200, 200);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.chooseFileUrl {
  display: flex;
  align-items: center;
}
.fileRadioButton {
  margin: 6px;
}
.urlRadioButton {
  margin: 6px;
  margin-top: 16px;
}
.inputFile {
  flex: 80%;
  align-self: flex-end;
  padding-left: 0;
}
.inputUrl {
  flex: 70%;
  align-self: flex-end;
}

input[type="file"] {
  padding: 3px;
  padding-left: 0;
  width: 100%;
  color: rgb(50, 50, 50);
  font-family: inherit;
  font-size: 0.9em;
  border: none;
  background: rgba(200, 200, 200, 0);
}
input[type="text"],
input[type="password"],
input[type="date"],
input[type="url"] {
  padding: 5px;
  width: 100%;
  color: rgb(50, 50, 50);
  font-family: inherit;
  font-size: 0.9em;
  border: none;
  border-radius: 6px;
  background: rgb(240, 240, 240);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  outline: none;
}
input[type="url"] {
  margin-left: 2px;
}

input[type="url"]:disabled {
  color: rgb(200, 200, 200);
}

input[type="file"]:disabled {
  color: rgb(200, 200, 200);
}

textarea {
  padding: 5px;
  width: 100%;
  color: rgb(50, 50, 50);
  font-family: inherit;
  font-size: 0.9em;
  border: none;
  border-radius: 6px;
  background: rgb(240, 240, 240);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  outline: none;
}

input[type="file"]::file-selector-button,
input[type="submit"],
input[type="file"]::-webkit-file-upload-button {
  padding: 6px;
  margin: 6px;
  color: rgb(50, 50, 50);
  text-shadow: 0 1px 15px rgba(0, 0, 0, 0.5);
  font-family: inherit;
  font-size: 1em;
  border: none;
  border-radius: 4px;
  background: rgb(150, 150, 150);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

input[type="file"]::file-selector-button:hover {
  background-color: rgb(90, 90, 90);
  color: rgb(200, 200, 200);
  transition: 1s;
}
input[type="submit"]:hover {
  background-color: rgb(90, 90, 90);
  color: rgb(200, 200, 200);
  transition: 1s;
}
input[type="file"]::-webkit-file-upload-button:hover {
  background-color: rgb(90, 90, 90);
  color: rgb(200, 200, 200);
  transition: 1s;
}
