@import url("style-base.css");
.container-register-students form .btn-login,
.btn-voltar {
  width: clamp(200px, 70%, 400px);
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 10px;
  letter-spacing: 0.1rem;
  font-weight: bolder;
  color: var(--bg-color);
  background: var(--primary-color);
  cursor: pointer;
  transition: 0.3s ease;
}

.container-register-students form .btn {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.btn-voltar {
  background: var(--red-color);
}

#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
}
#progressbar li {
  list-style-type: none;
  color: #99a2a8;
  font-size: 9px;
  width: calc(100% / 3);
  float: left;
  position: relative;
  font: 500 13px/1 "Roboto", sans-serif;
  text-align: center;
}
#progressbar li:nth-child(2):before {
  content: "\f12f";
  text-align: center;
}
#progressbar li:nth-child(3):before {
  content: "\f457";
  text-align: center;
}
#progressbar li:before {
  content: "\f1fa";
  font: normal normal normal 30px/50px Ionicons;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: block;
  background: #eaf0f4;
  border-radius: 50%;
  margin: 0 auto 10px auto;
}
#progressbar li:after {
  content: "";
  width: 100%;
  height: 10px;
  background: #eaf0f4;
  position: absolute;
  left: -50%;
  top: 21px;
  z-index: -1;
}
#progressbar li:last-child:after {
  width: 150%;
}
#progressbar li.active {
  color: #5cb85c;
}
#progressbar li.active:before,
#progressbar li.active:after {
  background: #5cb85c;
  color: white;
  text-align: center;
}

/* Form Register Student */

.container-register-students {
  width: 100%;
  padding: 0 10px 0 0;
}

.container-register-students form section fieldset {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  color: var(--primary-color);
  padding: 15px;
  border-radius: 4px;
  border: 2px solid var(--primary-color);
  gap: 15px;
}

.container-register-students form section fieldset legend {
  padding: 0 10px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

.container-register-students form .input-group {
  font-size: 1.25rem;
  position: relative;
}

.container-register-students form .input-group.small {
  flex: 1 0 150px;
}
.container-register-students form .input-group.medium {
  flex: 1 0 240px;
}
.container-register-students form .input-group.big {
  flex: 1 0 530px;
}

.container-register-students form .input-group input {
  all: unset;
  width: 100%;
  color: var(--text-color);
  padding: 1rem;
  border: 1px solid #9e9e9e;
  border-radius: 10px;
  box-sizing: border-box;
}

.container-register-students form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 32px white inset;
}

.container-register-students form .input-group select {
  width: 100%;
  color: #757575;
  padding: 1.1rem;
  font-size: 1.25rem;
  border: 1px solid #9e9e9e;
  border-radius: 10px;
  outline: 0;
  appearance: none;
  cursor: pointer;
}

.container-register-students form .input-group i {
  position: absolute;
  top: 1.3rem;
  right: 0.5rem;
  color: #757575;
  pointer-events: none;
}

.container-register-students form .input-group select option {
  color: #949393;
}

/* Upload Arquivos */

.container-upload {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.box-upload {
  width: clamp(200px, 100%, 250px);
  height: 150px;
  color: var(--primary-color);
  border-radius: 5px;
}

.upload-label {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 3px dashed var(--primary-color);
  border-radius: 4px;
  cursor: pointer;
}

.upload-label:hover > span {
  /* opacity: 0.7; */
  transform: scale(1.3);
  filter: drop-shadow(0 3px 3px var(--primary-color));
}

.upload-label span {
  font-size: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upload-label p {
  font-size: 1rem;
  font-weight: bold;
}

#file-name-declaracao,
#file-name-certidao,
#file-name-cpf-res,
#file-name-cpf-est,
#file-name-residencia,
#file-name-vacina,
#file-name-sus,
#file-name-nis {
  width: 100%;
  display: flex;
  color: #949393;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: lowercase;
  padding: 3px;
  overflow: hidden;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}

@media (max-width: 480px) {
  .container-register-students form .input-group.medium,
  .container-register-students form .input-group.small,
  .container-register-students form .input-group.big {
    flex: 1 0 200px;
  }
}
