/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');


/* RESETAR ARQUIVO */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


/* ESTILIZAÇÃO DO BODY */
body{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #0F2027;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #2C5364, #203A43, #0F2027);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #2C5364, #203A43, #0F2027); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  overflow: hidden;
  position: relative;
}


/* AJUSTE BOTÃO RESTART */
.btn-restart{
    position: absolute;
    top: 10px;
    right: 10px;
}

.btn-restart button{
    padding: 10px;
    border: none;
    color: #2c5364;
    background: color;
    border-radius: 9px;
    cursor: pointer;
}

/* AJUSTE DO WRAPPER */
.wrapper{
  width: 450px;
  height: 288px;
  padding: 30px;
  background: #fff;
  border-radius: 9px;
  transition: height 0.2s ease;
}

.wrapper.active{
  height: 537px;
}

.wrapper .upload-box{
  height: 225px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 5px;
  border: 2px dashed #afafaf;
}

.wrapper.active .upload-box{
  border: none;
}

.upload-box p{
  font-size: 1.06rem;
  margin-top: 20px;
}

.wrapper.active .upload-box p{
  display: none;
}

.wrapper.active .upload-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.wrapper .content{
  opacity: 0;
  margin-top: 28px;
  pointer-events: none;
}

.wrapper.active .content{
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s 0.05s ease;
}

.content .row{
  display: flex;
  justify-content: space-between;
}

.content .row .column{
  width: calc(100% / 2 - 15px);
}

.row .column label{
  font-size: 1rem;
}

.sizes .column input{
  width: 100%;
  height: 49px;
  outline: none;
  margin-top: 7px;
  padding: 0 15px;
  font-size: 1.06rem;
  border-radius: 4px;
  border: 1px solid #aaa;
}

.sizes .column input:focus{
  padding: 0 14px;
  border: 2px solid #2C5364;
}

.content .checkboxes{
  margin-top: 20px;
}

.checkboxes .column{
  display: flex;
  align-items: center;
}

.checkboxes .column input{
  width: 17px;
  height: 17px;
  margin-right: 9px;
  accent-color: #2C5364;
}

.content .download-btn{
  width: 100%;
  color: #fff;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 1.06rem;
  border-radius: 5px;
  padding: 15px 0;
  margin: 30px 0 10px;
  background: #2C5364;
  text-transform: uppercase;
}


/* AJUSTE MOBILE */
@media screen and (max-width:768px){
  .wrapper{
      margin: 10px;
  }
}