    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

.password-toggle .toggle-icon {
  margin-top: 3px;
  font-size: 18px; 
}

.toggle-icon.show {
  color: #000; 
}

.toggle-icon.hide {
   color: #000;
}
body {
 padding: 20px;
 font-family: 'Poppins', sans-serif;
 background: #212121;
 color: #FFFFFF;
 display: flex;
 justify-content: center;
 align-items: center;
 }

.collage-watermark {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-template-rows: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  align-items: center;
  justify-items: center;
}

.collage-watermark::before,
.collage-watermark::after {
  content: "Appstate Getter";
  font-size: 40px;
  font-weight: bold;
  opacity: 0.1;
}

.collage-watermark::before {
  transform: scale(1);
}

.collage-watermark::after {
  transform: scale(0.8) rotate(-30deg);
}

.container {
 background-color: #616161;
 border-radius: 10px;
 box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
 padding: 20px;
 margin: 20px auto;
 overflow: auto;
 }

.container1 {
 background-color: #FFFFFFFF;
 border-radius: 10px;
 box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
 padding: 5px;
 margin: 5px auto;
 overflow: auto;
 }

.footer {
  text-align: center;
  background-color: black;
  color: white;
  padding: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 12px;
}

.centered-text {
  text-align: center;
  margin-bottom: 10px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"],
input[type="password"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-bottom: 15px;
}

.password-toggle {
  position: relative;
}

.password-toggle .toggle-icon {
  position: absolute;
  top: 20%;
  right: 10px;
  transform: translateY(-20%);
  cursor: pointer;
}

input[type="submit"],
button {
  width: 100%;
  padding: 10px;
  background-color: #fff;
  color: black;
  border: none;
  text-align: center;
  text-decoration: none;
  display: block;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
}

#result {
  width: 100%;
  padding: 10px;
  border: 1px solid #BDBDBD;
  border-radius: 4px;
  resize: none;
  margin-bottom: 15px;
  font-family: monospace;
}

#copyButton {
  width: 100%;
  padding: 10px;
  background-color: #616161;
  color: white;
  border: none;
  text-align: center;
  text-decoration: none;
  display: block;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 16px;
}

#loadingText {
  display: none;
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
}

.loading {
  display: inline-block;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#ping {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
}
a{
  text-decoration: none
}
h2, p{
    text-align: center;
}
.card{

  margin: 0;

  padding: 2em;
  width: 260px;
  background: #1c1f2b;
  border-radius: 10px;
  position: relative;
}

@property --angle{
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.card::after, .card::before{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(from var(--angle), #000, #000, #ffffff, #ffffff, #ffffff);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 3px;
  border-radius: 10px;
  animation: 10s spin linear infinite;
}
.card::before{
  filter: blur(1.5rem);
  opacity: 0.5;
}
@keyframes spin{
  from{
    --angle: 0deg;
  }
  to{
    --angle: 360deg;
  }
}
