* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #0b0c15;
  color: #fff;
}

#Text {
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-family: "Dosis";
  font-weight: 700;
  font-style: bold;
  font-size: 50px;
  margin-top: 20px;
  color: #fff;
}

#container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60vw;
  max-width: 400px;
  height: 40vh;
  max-height: 350px;
  background-color: #1c1f2c;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #666;
    
  padding: 20px;
  border-radius: 25px;
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

label {
  font-family: "Dosis", sans-serif;
  font-size: 25px;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
  font-weight: bold;
}

.input-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  --border-color: #32a048;
}

.input-wrapper::after,
.input-wrapper::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-image: conic-gradient(
    from var(--angle),
    var(--border-color),
    var(--border-color)
  );
  z-index: 1;
  padding: 3px;
  border-radius: 8px;
  animation: 1s spin linear infinite;
}

.input-wrapper::before {
  filter: blur(1.5rem);
  opacity: 0.5;
}

@keyframes spin {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #1c1f2c;
  border-radius: 8px;
  box-shadow: inset -2px 2px 5px rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease;
  text-align: center;
  font-weight: bold;
  background-color: #444;
  color: #fff;
  position: relative;
  z-index: 2;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: var(--border-color);
  outline: none;
}

#passwordIndicators {
  width: 100%;
  text-align: left;
  font-family: "Dosis", sans-serif;
  font-size: 18px;
  margin-top: 15px;
  color: #fff;
  text-align: center;
}

#passwordIndicators div {
  margin: 5px 0;
}
