* {
  top: 0;
  left: 0;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  margin: 0;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
input {
  border-style: none;
  background: white;
  outline: none;
  border: 1px solid #ccc;
  width: 95%;
  height: 40px;
  padding-left: 10px;
  font-size: 25px;
  border-radius: 5px;
}
.img {
  width: 100%;
  height: 605px;
  filter: blur(8px);
  z-index: -100;
  background-size: cover;
  background: url("./undraw_fingerprint_re_uf3f.svg") no-repeat center center;
}
.container {
  position: fixed;
  left: 11%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1000;
}
.title {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.title h1 {
  font-size: 50px;
}

.main-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 700px auto;
  margin-top: 25px;
}

.cpf,
.rg,
.cnpj {
  display: block;
  margin: 50px;
  width: 250px;
  height: 250px;
  padding: 25px;
  border-radius: 10px;
  background-image: linear-gradient(
    to right top,
    #ebebebab,
    #eeeeeeaf,
    #f1f1f1b2,
    #f4f4f4b4,
    #f7f7f7,
    #f7f7f7a4,
    #f6f6f6a1,
    #f6f6f68c,
    #f2f2f29f,
    #eeeeeeb2,
    #eaeaeaa1,
    #e6e6e69d
  );
  box-shadow: 0 0 25px 2px rgb(184, 184, 184);
}
.validar {
  border: none;
  background: rgb(205, 238, 154);
  margin: 20px;
  width: 200px;
  height: 50px;
  border-radius: 10px;
  font-weight: 600;
}
.validar:hover {
  background: greenyellow;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 300px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 400px;
  border-radius: 10px;
  font-weight: 600;
}

.close {
  color: #aaaaaa;
  margin-right: -70px;
  margin-top: -30px;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

@media (min-width: 240px) and (max-width: 575px) {
  .title h1 {
    font-size: 40px;
  }
  .container {
    display: block;
  }
  .main-box {
    display: block;
    margin-left: -35px;
  }
}
