* {
  box-sizing: border-box;
}
.password-screen{
  position:fixed;
  inset:0;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:999;
  background-image: url("images/sonny.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.password-box{
  background:rgba(0,0,0,0.7);
  padding:40px;
  border-radius:20px;
  text-align:center;
  color:white;
  width:320px;
  box-shadow:0 20px 60px rgba(0,0,0,0.5);
}

.password-box input{
  width:100%;
  padding:12px;
  margin-top:15px;
  border-radius:10px;
  border:none;
  text-align:center;
  font-size:16px;
}

.password-box button{
  margin-top:15px;
  padding:10px 18px;
  border:none;
  border-radius:12px;
  cursor:pointer;
  background:#ff4da6;
  color:white;
  font-weight:bold;
}

.password-box button:hover{
  transform:scale(1.05);
}

.error{
  color:#ff8080;
  margin-top:10px;
}

.hidden{
  display:none;
}

body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  color: white;
  overflow: hidden;
  background-image: url("images/pochaco.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.card {
  background: rgba(173, 216, 255, 0.25); /* light blue transparent */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* safari support */
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 50, 0.3);
  max-width: 500px;
  text-align: center;
  color: #003366;
  border: 1px solid rgba(255, 255, 255, 0.4);
}


h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

h2 {
  margin-top: 0;
}

p {
  opacity: 0.9;
  line-height: 1.5;
}

.buttons {
  margin-top: 30px;
  position: relative;
  height: 60px;
}

button {
  padding: 15px 25px;
  font-size: 18px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s ease;
}

.yes {
  background: #ff2e63;
  color: white;
  margin-right: 10px;
}

.yes:hover {
  transform: scale(1.05);
}

.no {
  background: white;
  color: #ff2e63;
  position: absolute;
}
