@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap");

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: "Cairo", sans-serif !important;
}

body {
  background-color: #275050;
}

.card {
  margin: 25px auto;
  text-align: center;
  width: 70%;
  padding: 0;
  color: #fff;
}

.card div.logo {
  margin-bottom: 50px;
}
.imgs {
  display: flex;
  margin: 30px auto;
  justify-content: center;
}
.imgs .img {
  width: 33.33%;
  padding: 10px;
}
.imgs .img input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.imgs .img input[type="radio"] + img {
  cursor: pointer;
}
.imgs .img input[type="radio"]:checked + img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  transition: all 0.5s;
  box-shadow: 0 0 9px 3px #ffffff;
}
.imgs .img img {
  width: 100%;
}

.print {
  background-color: transparent;
  padding: 10px 20px;
  font-size: 19px;
  color: #fff;
  border: 1px solid #fff;
}
@media (max-width: 992px) {
  .imgs .img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .card {
    width: 100%;
    padding: 10px;
  }

  input.name {
    width: 80%;
  }
}

h1 {
  font-weight: 600;
}

input {
  width: 300px;
  display: block;
  margin: 10px auto;
  height: 40px;
  font-size: 14px;
  outline: none;
  border: 1px solid #fff;
  border-radius: 2px;
  transition: all 0.1s;
  text-align: right;
}
textarea {
  height: 160px;
  width: 299px;
  display: block;
  margin: 10px auto;
  outline: none;
  padding: 7px;
  font-size: 14px;
  text-align: right;
  border-radius: 2px;
  transition: all 0.1s;
  border: 1px solid #fff;
  font-family: serif;
}
input:focus,
textarea:focus {
  border-color: #8d0101 !important;
}
.print {
  background-color: #8d0101;
  font-size: 18px;
  color: #fff;
  border: 1px solid #8d0101;
  display: flex;
  transition: all 0.1s;
  justify-content: center;
  height: 50px;
  cursor: pointer;
  align-items: center;
}
.print:hover {
  border-color: #fff;
}
/*========================================================================================= */
