@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap');

html, body {
  font-family: "Hind", sans-serif;
}

.container {
  margin: 50px auto;
  padding: 20px;
  border: 1px solid #ccc;
}

form {
  margin-bottom: 20px;
}

label {
  font-weight: bold;
}

/* Basic styles for text input */
input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
    font-family: "Hind", sans-serif;
}

/* Focus styles */
input[type="text"]:focus {
    border-color: #007bff;
    outline: none;
}

/* Placeholder styles */
input[type="text"]::placeholder {
    color: #999;
}

/* Media query for responsiveness */
@media screen and (max-width: 768px) {
    input[type="text"] {
        font-size: 14px;
    }
}

button {
  padding: 10px 20px;
  background-color: darkred;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: "Hind", sans-serif;
}

button:hover {
  background-color: darkblue;
}

#verificationResult {
  font-weight: bold;
  margin-top: 20px;
}

#verificationImage img {
  width: 100px;
}