*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* 🌄 Background */
body{
  font-family: Arial, sans-serif;
  min-height:100vh;
  background-image:url("https://www.skillindiadigital.gov.in/assets/new-ux-img/encourage_banner_desktop.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  backdrop-filter: blur(5px);
  overflow: hidden;
}

/* Overlay for blur effect */
body::before{
  content:"";
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  /* backdrop-filter: blur(1px); */
}

/* 🧊 Center container */
.content{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
  z-index:1;
}

/* 📦 Login box */
.log2{
  width:90%;
  max-width:350px;
  text-align:center;
  /* background:rgba(176, 202, 255, 0.85); */
  background-color: rgba(212, 200, 186);
  padding:25px;
  border-radius:20px;
  box-shadow:1px 2px 10px 5px rgba(0,0,0,0.3);
}

/* Inputs */
input{
  width:100%;
  height:40px;
  margin-top:15px;
  border-radius:15px;
  padding:10px;
  border:none;
  outline:none;
}

/* Button primary */
#btn1{
  margin-top:15px;
  width:100%;
  font-size:18px;
  border-radius:20px;
  padding:10px;
  color:white;
  background-color:#6c5af3;
  border:none;
  cursor:pointer;
  transition:0.3s;
}

#btn1:hover{
  transform:scale(1.05);
}

/* Text */
p{
  margin-top:10px;
  color:white;
  font-size:16px;
}

/* Secondary button */
#btn2{
  width:100%;
  margin-top:20px;
  font-size:18px;
  background-color:rgb(193,255,255);
  border-radius:20px;
  padding:10px;
  border:none;
  cursor:pointer;
}

/* 📱 Tablet */
@media(max-width:768px){
  .log2{
    font-size:28px;
  }
}

/* 📱 Mobile */
@media(max-width:480px){
  .log2{
    font-size:22px;
    padding:15px;
  }
}