@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    min-height: 100vh;
    background: url('Src/bg3.jpg') no-repeat center center;
    background-size: cover; /* Ensures the background image covers the whole viewport */
    background-attachment: fixed; /* Keeps the background fixed while scrolling */
    font-family: 'Poppins', sans-serif;
  }
  
.wrapper{
    max-width: 500px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 7px;
    padding: 20px 25px 15px;
}
header h1{
    font-size: 27px;
    font-weight: 500;
    color: #ff0000;
    text-align: center;
}
header p{
    margin-top: 5px;
    font-size:16px;
    color: #15d2c9;
}
.inputs{
    margin: 20px 0 27px;
}
.inputs input {
    width: 100%;
    height: 60px;
    outline: none;
    font-size: 16px;
    padding: 0 17px;
    border-radius: 15px;
    border: 1px solid rgba(153, 153, 153, 0.5); /* Semi-transparent border */
    background-color: transparent; /* Makes the background transparent */
    color: #fff; /* Text color */
}

.inputs input:focus {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    border-color: rgba(153, 153, 153, 0.7); /* Slightly darker border on focus */
}
.inputs button {
    width: 65%; /* Change from 100% to auto to let the button size adjust to its content */
    height: 50px; /* Reduced height */
    font-size: 15px; /* Reduced font size */
    padding: 0 20px; /* Adjust padding to suit the smaller button */
    margin: 20px auto; /* Center the button by setting margin-left and margin-right to auto */
    background: #aa57cc;
    border-radius: 15px;
    cursor: pointer;
    border: none;
    outline: none;
    opacity: 0.7;
    pointer-events: none;
    display: block; /* Make sure it behaves like a block-level element to center it */
}
.inputs button.active {
    opacity: 1;
    pointer-events: auto;
}

.info-txt{
    display: none;
    font-size: 19px;
    text-align: center;
    margin-bottom: 18px;
    color: aqua;
}
.info-txt span{
    color: #ed6b15;
}