* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nani {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom right, #2C5364, #203A43, #0F2027);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* Wrapper styling */
.shruti {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.shruti:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7);
}

/* Heading */
.nani h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #FFEB3B;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nani p {
    text-align: center;
    font-size: 16px;
    color: #f1f1f1;
    margin-bottom: 30px;
}

/* Form layout */
.nani form {
    display: flex;
    flex-direction: column;
}

.kajal {
    position: relative;
    margin-bottom: 20px;
}

.kajal input,
.kajal select {
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 8px;
    /*color: #fff;*/
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.kajal input::placeholder,
.kajal select::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.kajal input:focus,
.kajal select:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFEB3B;
}

/* Animated button */
.kajal input[type="submit"] {
    background: linear-gradient(45deg, #FF512F, #DD2476);
    border: none;
    color: white;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 4px 12px rgba(255, 81, 47, 0.5);
    border-radius: 50px;
}

.kajal input[type="submit"]:hover {
    background: linear-gradient(45deg, #DD2476, #FF512F);
    box-shadow: 0 6px 16px rgba(255, 81, 47, 0.7);
}

.kajal input[type="submit"]:focus {
    outline: none;
}

/* Success Message */
.rahul {
    display: none;
    color: #4CAF50;
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    .shruti {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
}




/* ewwwww */

/* style.css */

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.google-form-container {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  box-sizing: border-box;
}

.google-form-container iframe {
  width: 100%;
  height: 1773px;
  border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .google-form-container iframe {
    height: 1900px;
  }
}

@media (max-width: 480px) {
  .google-form-container {
    padding: 10px;
  }

  .google-form-container iframe {
    height: 2000px;
  }
}
