.main__container {
  display: flex;
  flex-direction: row;
  height: 100vh;
  width: 100vw;
}
.main__container .form__container,
.main__container .sidebar {
  height: 100%;
}
.main__container .form__container {
  display: flex;
  flex-direction: column;
  width: 70%;
  background: hsl(0, 0%, 100%);
  align-items: center;
  justify-content: center;
}

.sidebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 35px;
  flex-grow: 1;
  background-image: url(../images/bg-main-desktop.png);
}
.sidebar .cards__container {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  position: relative;
  left: 20px;
}
.sidebar .cards__container > div {
  position: relative;
  height: 245px;
  width: 447px;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  text-transform: uppercase;
  font-size: 2.5rem;
  text-align: center;
}
.sidebar .cards__container .card-front {
  display: grid;
  grid-template-rows: 40% 60%;
  right: -100px;
  background: url(../images/bg-card-front.png);
}
.sidebar .cards__container .card-front > div:first-child {
  display: flex;
  align-items: center;
  padding: 30px;
  gap: 10px;
}
.sidebar .cards__container .card-front div:first-child:before {
  content: "";
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.sidebar .cards__container .card-front div:first-child:after {
  content: "";
  border: 1px solid #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.sidebar .cards__container .card-front .card-info {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px 25px;
}
.sidebar .cards__container .card-front .card-info > div {
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
}
.sidebar .cards__container .card-back {
  position: relative;
  right: -160px;
  background: url(../images/bg-card-back.png);
}
.sidebar .cards__container .card-back > p {
  position: absolute;
  top: 44.5%;
  right: 13%;
  font-size: 17px;
}

.form__content {
  width: 35%;
  position: relative;
}

.form__content form {
  display: flex;
  flex-direction: column;
}
.form__content form input {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #c6c6c6;
  border-radius: 7px;
}
.form__content form input:nth-child(9) {
  color: #fff;
  background: #1e042f;
}
.form__content form label {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
}

.attribution {
  position: absolute;
  bottom: 0;
  right: 25%;
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}/*# sourceMappingURL=main.css.map */