body {
    text-align: left;
    margin-left: 100px;
    margin-top: 100px;
    background: 
        radial-gradient(at 0% 0%, rgba(187, 222, 251, 0.5) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(144, 202, 249, 0.3) 0px, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    background-attachment: fixed;
    min-height: 100vh;
}
.img {
    text-align: right;
    float: right;
    position: absolute;
    top: 50%;
    left: 85%;
    transform: translate(-50%, -50%);
}

.box {
    text-align: left;
    right: 100px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px); /* This creates the frosted glass look */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    margin-top: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05)
}

h1 {
    font-family: "Poppins", sans-serif;
    font-size: 2.5rem;
    color: rgb(7, 150, 245);
    margin-bottom: 10px;
}

p {
    font-family: "Roboto", sans-serif;
    font-size: 1.2rem;
    color: #333;
}




input {
  font-family: 'Poppins', 'Roboto', sans-serif; /* clean, readable */
  font-size: 16px;        /* easy to read */
  font-weight: 400;
  width: 50%;            /* responsive full width */
  max-width: 350px;       /* optional max width */
  padding: 12px 20px;     /* inner spacing */
  border: 2px solid #ccc; /* subtle border */
  border-radius: 10px;    /* rounded corners */
  outline: none;          /* remove default outline */
  transition: all 0.3s ease; /* smooth focus transition */
  box-sizing: border-box;
    
  border-radius:7px ;
  border-color: rgb(180, 235, 252);
    
    
    
}
:placeholder-shown {
    font-family: "Roboto", sans-serif;
    padding: 5px 0 5px 10px;
}

button {
    border-radius: 7px;
    background-color: rgb(7, 150, 245);
    padding: 5px 3px;
    border-color: white;
    padding: 10px 50px;
    width: 250px;
    font-size: 1.2rem;
    background: linear-gradient(90deg, #03a9f4, #007bb5);
    transition: 0.3s transform ease
   
}
button:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(3, 169, 244, 0.3);
}
input:focus {
    border-color: #81d4fa;
    box-shadow: 0 0 10px rgba(129, 212, 250, 0.2);
    outline: none;
}
.background-blobs {
    position: fixed; /* Fixed so it covers the whole screen */
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    /* This is a real encoded SVG wave */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3%3Cpath fill='%235b90e6' fill-opacity='0.2' d='M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,144C672,139,768,181,864,181.3C960,181,1056,139,1152,122.7C1248,107,1344,117,1392,122.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3e");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}