@font-face {
  font-family: "poppins";
  src: url("Poppins-Black.ttf") format("truetype");
}
@font-face {
  font-family: "mont";
  src: url("Fondest.ttf") format("truetype");
}
@font-face {
  font-family: "letters";
  src: url("Poppins-Light.ttf") format("truetype");
}
label {
  font-size: small;
  font-family: "letters";
}
h2 {
  font-size: small;
  font-family: "poppins";
}
body {
  display: block;
  background-color: #c3c3c3;
  height: auto;
}
form {
  display: flex;
  width: 1100px;
  margin: 1rem auto;
}
.img {
  background-color: rgb(255, 255, 255, 0.5);
  width: 50%;
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 20px 0 0 20px;
}
.img img {
  width: 100%;
}
.label-center {
  position: relative;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(40px);
  padding: 30px 40px;
  width: 50%;
  border-radius: 0 20px 20px 0;
}
.label-center h2 {
  font-size: 30px;
}
.box-input {
  margin-bottom: 10px;
}
label {
  font-weight: bold;
  color: #3d3d3d;
  display: block;
  margin-bottom: 5px;
}
form .label-center input, textarea {
  width: 100%;
  height: 47px;
  background-color: rgba(255, 255, 255, 0.32);
  border-radius: 20px;
  outline: none;
  border: 2px solid transparent;
  padding: 15px;
  font-size: 15px;
  color: #616161;
  transition: all 0.4s ease;
}
form .label-center textarea {
  height: 120px !important;
}
form .label-center textarea:focus {
  border-color: #ff008869;
}
form .label-center input:focus {
  border-color: #ff008869;
}

form .label-center button {
  font-family: "letters";
  width: 100%;
  height: 47px;
  background: #ff008a;
  border-radius: 20px;
  outline: none;
  border: none;
  margin-top: 15px;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

form .label-center button:disabled {
  background: rgba(255, 255, 255, 0.4);
  color: #ff008a;
}
.file-hidden {
  display: none;
}

.picture {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  background-color: rgba(255, 255, 255, 0.32);
  border-radius: 20px;
  cursor: pointer;
  font-family: sans-serif;
  transition: color 300ms ease-in-out, background 300ms ease-in-out;
  outline: none;
  overflow: hidden;
}

.picture:hover {
  color: #777;
  background: #ccc;
}

.picture:active {
  border-color: turquoise;
  color: turquoise;
  background: #eee;
}

.picture:focus {
  color: #777;
  background: #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.picture__img {
  max-width: 100%;
}

@media (max-width: 1100px) {
  .img {
    display: none;
  }
  form {
    width: 500px;
  }
  .label-center {
    width: 100%;
    border-radius: 20px;
  }
  .label-center .alert {
    right: 70px;
  }
}
@media (max-width: 500px) {
  form {
    width: 100%;
    padding: 0;
    border-radius: 0;
  }
  .label-center .alert {
    right: 10px;
  }
}
@media (max-width: 500px) {
  form {
    width: 100%;
    padding: 0;
    border-radius: 0;
  }
  .label-center .alert {
    min-width: 0;
    width: 100%;
    right: 0px;
  }
  .label-center {
    padding: 10px 5px;
  }
  .alert .msg {
    padding: 0 20px;
    font-size: 13px;
  }
  .alert .fa-check-circle {
    left: 28px;
    font-size: 23px;
  }
}
@media (max-width: 300px) {
  form {
    width: 100%;
    padding: 0;
    border-radius: 0;
  }
  .label-center .alert {
    min-width: 0;
    width: 100%;
    right: 0px;
  }
  .label-center {
    padding: 10px 5px;
  }
  .alert .msg {
    padding: 0 20px;
    font-size: 13px;
  }
  .alert .fa-check-circle {
    left: 28px;
    font-size: 23px;
  }
}