body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

div.corpo {
  width: 310px;
  height: 600px;
  background: #11291f;
  overflow: hidden;
}

p.titulo {
  font-family: "Audiowide", sans-serif;
  font-size: 26px;
  color: white;
}

.fundo {
  position: relative;
  width: 310px;
  height: 600px;
}

.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.8), transparent);
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0;
}

/* Definição de tamanhos e posições iniciais variadas */
.p1 {
  width: 10px;
  height: 10px;
  left: 10%;
  top: 15%;
  animation: float 15s infinite;
}
.p2 {
  width: 15px;
  height: 15px;
  left: 50%;
  top: 95%;
  animation: float 20s infinite reverse;
}
.p3 {
  width: 8px;
  height: 8px;
  left: 80%;
  top: 10%;
  animation: float 12s infinite 2s;
}
.p4 {
  width: 12px;
  height: 12px;
  left: 30%;
  top: 85%;
  animation: float 18s infinite 1s;
}
.p5 {
  width: 6px;
  height: 6px;
  left: 70%;
  top: 90%;
  animation: float 25s infinite;
}
.p6 {
  width: 20px;
  height: 20px;
  left: 10%;
  top: 20%;
  animation: float 30s infinite reverse;
  filter: blur(4px);
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
  50% {
    /* Movimento errático em 3D simulado */
    transform: translate(100px, -150px) scale(1.5);
    opacity: 0.8;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    transform: translate(-50px, -300px) scale(0.5);
    opacity: 0;
  }
}

p.rp {
  width: 310px;
  position: fixed;
  bottom: 0;
  color: white;
}

div.fundobrancoini {
  position: relative;
  z-index: 3;
  background: #e0e4e7;
  margin: -75px 15px 75px 15px;
  padding: 90px 10px 30px 10px;
  border-radius: 32px;
}

i.foto {
  position: relative;
  font-size: 150px;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

div.botao {
  background: #e0e4e7;
  box-shadow:
    5px 5px 13px #b8c7dd,
    -5px -5px 13px #ffffff;
  color: #646464;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 15px;
  margin: 15px;
}

div.botao:hover {
  background-color: #4caf50; /* Green */
  color: white;
}

button {
  width: 100%;
  border: none;
  background-color: #e0e4e7;
  transition-duration: 0.4s;
}

div.fundobranco {
  position: relative;
  z-index: 3;
  background: #e0e4e7;
  padding: 15px;
  margin: 15px;
  border-radius: 32px;
}

.fundoicone {
  font-size: 50px;
  justify-content: center;
  align-items: center;
  color: black;
  background: #e0e4e7;
  box-shadow:
    5px 5px 13px #b8c7dd,
    -5px -5px 13px #ffffff;
  padding: 15px;
  border-radius: 10px;
  margin: 10px;
}

div.entrada {
  text-align: left;
  background: #e0e4e7;
  box-shadow:
    inset 4px 3px 3px 0px #b8c7dd,
    inset -2px -4px 4px 0px #fff;
  border-radius: 1.5rem;
  padding: 10px;
  margin: 10px;
}

input[type="email"] {
  width: 90%;
  border: none;
  background-color: transparent;
}

input[type="email"]:focus {
  outline: none;
}

input[type="password"] {
  width: 90%;
  border: none;
  background-color: transparent;
}

input[type="password"]:focus {
  outline: none;
}

input[type="text"] {
  width: 90%;
  border: none;
  background-color: transparent;
}

input[type="text"]:focus {
  outline: none;
}

form {
  text-align: left;
}

input[type="radio"] {
  width: 28px;
  height: 28px;  
  appearance: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #e0e4e7;
  box-shadow:
    4px 4px 8px #b8c7dd,
    -4px -4px 8px #ffffff;
}

input[type="radio"]:checked {
  border-radius: 50%;
  background: #e0e4e7;
  box-shadow:
    4px 4px 8px #b8c7dd,
    -4px -4px 8px #ffffff;
}

input[type="radio"]:checked::before {
  content: "";
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background: #e54444;
}

input[type="checkbox"] {
  width: 28px;
  height: 28px;  
  appearance: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;  
  background: #e0e4e7;
  box-shadow:
    5px 5px 13px #b8c7dd,
    -5px -5px 13px #ffffff;  
  border-radius: 10px;  
}

input[type="checkbox"]:checked {  
  background: #e0e4e7;
  border-radius: 10px;
  box-shadow:
    4px 4px 8px #b8c7dd,
    -4px -4px 8px #ffffff;
}

input[type="checkbox"]:checked::before {
  content: "";  
  border-radius: 2px;
  width: 12px;
  height: 12px;
  background: #e54444;
}

.textoradio {
  margin: 15px;
  align-items: center;
}

div.formataradio {
  display: flex;
  width: 100%;
  margin: 15px;
}

.textoformulario {
  width: 100%;
  margin: 15px;
  font-size: 14px;
}

/* Esconde o input original, mas mantém funcional */
input[type="file"] {
  display: none;
}

/* Estiliza a label para parecer um botão */
.custom-file-upload {
  display: inline-block;
  width: 100%;
  height: 100%;
  appearance: none;
}
