body {
  background-image: url("./img/cloud1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
}

.banner {
  padding: 0;
  background-color: #52575c;
  color: white;
}

.banner-text {
  padding: 8px 20px;
  margin: 0;
}


.logo {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 1px;
}

.custom-container {
  width: 340px;
  height: auto;
  border-left: 1px solid #dcdfe5;
  border-bottom: 1px solid #dcdfe5;
  padding-top: 10px;
  margin: 20px auto;
  background: #fff;
  box-shadow: 0 4px 10px 0 rgb(47 56 111 / 10%);
  border-radius: 8px;
}

.form-list {
  display: flex;
  padding: 0px;
}

.config-list {
  line-height: 0px;
  /* margin: none; */
  /* border: none; */
  display: flex;
  padding: 5px 15px;
}

.share-form-list {
  display: flex;
  padding: 0 15px;
}

label {
  border: none;
  margin: 20px auto;
  outline: medium;
  display: inline-block;
  font-family: PingFangSC-Regular;
  font-size: 13px;
  width: 80px;
  color: gray;
}

input {
  border: none;
  margin: 10px auto;
  outline: medium;
  display: inline-block;
  border-left: 1px solid #dcdfe5;
  border-bottom: 1px solid #dcdfe5;
  font-family: PingFangSC-Regular;
  font-size: 13px;
  width: 40%;
}

button {
  display: block;
  width: 25%;
  height: 30px;
  margin: 0 auto;
  border: none;
  outline: none;
  background: #337eff;
  border-radius: 5px;
  font-family: PingFangSC-Regular;
  font-size: 12px;
  color: #fff;
  cursor: pointer;
}

button:hover {
  outline-color: rgb(228, 113, 51);
  outline-style: solid;
  box-shadow: 0 0 0 3px #df7c3e;
}

button:focus {
  outline-color: yellow;
  outline-style: solid;
  box-shadow: 0 0 0 3px #a4be82;
}

button[disabled] {
  color: white !important;
  background: #9e9d9d !important;
}

.video-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

@media (max-width: 660px) {
  .video-container {
    flex-direction: column;
    align-items: center;
  }
}