.id-card-holder {
    width: 225px;
          padding: 4px;
          margin: 0 auto;
          background-color: #1f1f1f;
          border-radius: 5px;
          position: relative;
  }
  .id-card-holder:after {
      content: '';
      width: 7px;
      display: block;
      background-color: #0a0a0a;
      height: 100px;
      position: absolute;
      top: 105px;
      border-radius: 0 5px 5px 0;
  }
  .id-card-holder:before {
      content: '';
      width: 7px;
      display: block;
      background-color: #0a0a0a;
      height: 80px;
      position: absolute;
      top: 105px;
      left: 222px;
      border-radius: 5px 0 0 5px;
  }
  .id-card {
      
      background-color:rgb(163, 176, 204);
      padding: 5px;
      border-radius: 10px;
      text-align: center;
     
  }
  .id-card img {
      margin: 0 auto;
  }
  .header img {
      width: 90px;
      margin-top: 1px;
      
  }
  .photo img {
      width: 90px;
      margin-top: 1px;
      border: 2px solid white;
  }
  h2 {
      font-size: 17px;
      margin: 5px 0;
      
  }
  h3 {
      font-size: 14px;
      margin: 1px 0;
      font-weight: 600;
  }
  .qr-code img {
      width: 60px;
  }
  p {
      font-size: 11px;
      margin: 0px;
      font-weight: bold;
  }
 
#cont{
display: block;
}

  #idprint{
    
     margin-top: 2rem;
     display: none;
     flex-direction: column;
     justify-content: center;
     align-items: center;
  }
 button{
  margin-top: .8rem;
  padding: 4px ;
  font-size: 20px;
  text-align: center;
  background-color: aqua;
  border-radius: 15px;
  width: 140px;
  font-weight: bold;
 }
 button:hover{
  cursor: pointer;
  box-shadow: 4px 4px 4px 3px  rgb(102, 208, 247);

 }
 span{
  color: red;
  font-size: 15px;
  font-weight: bold;
 }
  body{
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: gray;
flex-direction: column;
}
.wrapper{
position: relative;
max-width: 400px;
width: 100%;
background: beige;
padding: 34px;
border-radius: 6px;
box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.wrapper h2{
position: relative;
font-size: 22px;
font-weight: 600;
color: #333;
}
.wrapper h2::before{
content: '';
position: absolute;
left: 0;
bottom: 0;
height: 3px;
width: 28px;
border-radius: 12px;
background: #4070f4;
}
.wrapper form{
margin-top: 30px;
}
.wrapper form .input-box{
height: 40px;
margin: 35px ;
}
form .input-box input{
height: 100%;
width: 100%;
outline: none;
padding: 0 10px;
font-size: 17px;
font-weight: 400;
color: #333;
border: 1.5px solid #C7BEBE;
border-bottom-width: 2.5px;
border-radius: 6px;
transition: all 0.3s ease;

}
.input-box input:focus,
.input-box input:valid{
border-color: #4070f4;
}
form .policy{
display: flex;
align-items: center;
}
form h3{
color: #707070;
font-size: 14px;
font-weight: 500;
margin-left: 10px;
}
.input-box.button input{
color: #fff;
letter-spacing: 1px;
border: none;
background: #4070f4;
cursor: pointer;
margin-top: 1rem;

}
.input-box.button input:hover{
background: #0e4bf1;
}
form .text h3{
color: #333;
width: 100%;
text-align: center;
}
form .text h3 a{
color: #4070f4;
text-decoration: none;
}
form .text h3 a:hover{
text-decoration: underline;
}

@media (max-width: 450px) {
.wrapper{
  
  max-width: 320px;
  padding: 20px;
}
}