:root{
  --bg-color: #0f172a;
  --text-color : #FFFFFF;
  --border: #FA0000;
  --box-glow: rgba(255, 241, 3, 1);
}
*{box-sizing: border-box;}
body{
  font-family: 'Verdana', Geneva, Tahoma, sans-serif;
  line-height: 1.8;
  padding: 0;
  margin: 0;
  background-image:url(bg.png);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
color: var(--text-color);
display: flex;
flex-direction: column;
justify-content: center ;
align-items: center;
min-height: 100vh;
min-width: 100vw;
overflow-x: hidden;
}
.main{
  font-family: 'Courier New', Courier, monospace;
  font-weight: bolder;
  background-image:url(bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  min-height: fit-content;
  width: 90%;
  max-width: 500px;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border);
  border-radius:20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 16px 8px rgba(255, 227, 65, 1);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 40px 20px;
}
.header{
  justify-content: center;
  align-items: center;
}
form{
  display: flex;
  flex-direction: column;
}
input{
  background: none;
  border: 2px solid rgba(255, 225, 0, 1);
  border-radius: 20px;
  padding:20px;
  margin: 10px;
  color:#FFFFFF;
}
input[type="password"]::placeholder{
  font-family: 'Verdana', Geneva, 'Tahoma', sans-serif;
  font-weight: bold;
  font-size: 17px;
  color:#FFFFFF;
  transform: translateX(5px);
  text-align: center;
  
}

.btn{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: bolder;
font-size: 20px;
  padding: 10px;
  margin: 20px;
  border: 1px solid #FFFFFF;
  border-radius: 20px;
  background: none;
  color: #FFFFFF;
  cursor: pointer;
  width: 100%;
  max-height: 300px;
  min-width: unset;
}
.btn:hover{
  transform: translateY(-3px);
}
h1{
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 3rem;
  text-align: center;
}
p{font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  color:#FFFFFF;
  font-size: 20px;
}

.btns{
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 10px;
  margin: 10px;
}
.pop-btn{
  padding: 10px;
  margin: 0;
  gap: 10px;
  min-width: 50vw;
  border: 1px solid #FFFFFF;
  border-radius: 20px;
  cursor: pointer;
  background: #83FF00;
  
}
.pop-up {
  height: auto;
  max-height: 70vh;
width: 90%;
max-width: 500px;
min-height: 200px;
  border: 1px solid;
border-color: greenyellow;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  background:rgba(50, 50, 57, 0.8);
  box-shadow: 0 0 8px 4px var(--box-glow, #EDF600);
  color: #FFFFFF;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  overflow-y: auto;
  word-wrap: break-word;
  padding: 20px;
  box-sizing: border-box;
  justify-content: space-between;
  text-align: center;

}
.font{
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  font-size: 25px;
  line-height: 1.5;
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.bar-container{
  width: 100%;
  height: 10px;
  background-color: rgb(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
}

.bar {
  height: 10px;
  width: 0%;
  background-color: #FF0303;
  transition: all 0.4s ease;
  border-radius: 10px;
}
@media (min-width:768px) {
  .pop-up{
    width: 80%;
    max-width: 800px;
    min-height: 400px;
    padding: 40px;
  }
  .font{
    font-size: 22px;
    text-align: left;
    line-height: 1.6;
  }
  }
