@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  font-family: 'Work Sans', sans-serif;
}

body {
  background-color: #f0f3f9;
}

.container {
  width: 1190px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 100px 0px;
}

.form-wrapper {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  gap: 20px;
}

input {
  border-radius: 2rem;
  border: .1rem solid #dee6f3;
  background-color: #f7f9fd;
  padding: 1rem 1.5rem;
  color: #334e70;
}

input:focus-visible {
  -webkit-transition: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  outline: none;
}

select:focus-visible {
  -webkit-transition: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  outline: none;
}

select {
  border: .1rem solid #dee6f3;
  background-color: #f7f9fd;
  padding: 1rem 1rem;
  color: #334e70;
}

.preview {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  gap: 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

button {
  outline: none;
  padding: 1rem 1rem;
  border: none;
  border-radius: 2rem;
  background-color: #ff5a60;
  cursor: pointer;
  color: #ffffff;
}

button:hover {
  background-color: #ff7164;
}

h1 {
  font-size: 1.5rem;
}

#namePrew {
  text-transform: capitalize;
}

#titlePrew {
  text-transform: uppercase;
}

small {
  color: #7F7F7F;
  font-weight: 400;
}

.banners-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.banner {
  color: white;
  font-weight: 700;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.banner .banner-message {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 2rem;
}

.banner .banner-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.banner .banner-close:hover {
  background: rgba(0, 0, 0, 0.12);
}

.banner.success {
  background: #10c15c;
}

.banner.success::after {
  background: #10c15c;
}

.banner.error {
  background: #ed1c24;
}

.banner.error::after {
  background: #ed1c24;
}

.banner.info {
  background: #0b22e2;
}

.banner.info::after {
  background: #0b22e2;
}

.banner::after {
  content: "";
  position: absolute;
  height: 10%;
  width: 100%;
  bottom: 100%;
  left: 0;
}

.banner:not(.visible) {
  display: none;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.banner.visible {
  -webkit-box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.12);
  -webkit-animation-name: banner-in;
          animation-name: banner-in;
  -webkit-animation-direction: forwards;
          animation-direction: forwards;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes banner-in {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes banner-in {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.show-banner {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #ededed;
  border: 0;
  padding: 1rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  margin: 0.25rem;
}

#addressPrew {
  text-transform: capitalize;
}
/*# sourceMappingURL=main.css.map */