/* Base Styles */
body {
  font-family: Georgia, Bangla;
  font-size: 4.5vw;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: black;
  overflow-x: hidden;
}
@font-face {
  font-family: "Bangla";
  src: url("./bangla.ttf");
}

/* Wrapper for centering */
.wrapper {
  width: 90vw;
  max-width: 600px;
  padding: 5vw;
  background-color: black;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 225, 0.2);
  box-sizing: border-box;
}

/* Container Flex Layout */
.container {
  display: flex;
  flex-direction: column;
  gap: 4vw;
  width: 100%;
}

/* Column Styling */
.col {
  width: 100%;
}

/* Input Fields */
input, textarea {
  font-family: Georgia, Bangla;
  width: 100%;
  font-size: 4vw;
  padding: 3vw;
  color: #00ffe7;
  background-color: black;
  border: 1px solid #00ffe7;
  border-radius: 6px;
  box-sizing: border-box;
}
/* Submit Button */
input[type="submit"] {
  background: linear-gradient(45deg, #00ffe1, #a86ff0);
  font-weight: bold;
  color: white;
  box-shadow: 0 4px 12px rgba(0,255,225,0.3);
  padding: 10px 15px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 1em;
  border: none;
  transition: background 0.3s;
}
input[type="submit"]:hover {
  background-color: #45a049;
}

/* Textarea Styling */
textarea {
  font-family: Georgia, Bangla;
  color: #00ffe7;
  margin: 5vw 0;
  resize: vertical;
  min-height: 100px;
}
/* Focus Styles */
input:focus,
color: #00ffe7;
textarea:focus {
  box-shadow: none;
  outline: none;
  border-color: #00ffe7;
}
/* Responsive Media Query */
@media (max-width: 480px) {
  body {
    font-size: 4.2vw;
  }
  .wrapper {
    width: 95vw;
    padding: 6vw;
  }
  input,
  textarea {
  	font-family: Georgia, Bangla;
    font-size: 4.5vw;
  }

  input[type="submit"] {
    padding: 3vw;
  }
}

h3 {
      font-size: 1.25em;
  background: linear-gradient(45deg, white, lightblue, blue, violet, purple, pink, red);
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1.5;
  font-weight: normal;
  text-align: center;
  margin: 0.5em 0;
    }