* {
  padding: 0px;
  margin: 0px;
}


h1 {
  font-size: 40px;
  color: #fff9f9;
  margin-bottom: 20px;
}
#msgbox{
    font-size: 20px;
    color: #0c7a10;
    margin-top: 20px;
    text-align: center;
    text-shadow: 10px 10px 10px rgba(0, 0, 0, 0);
    font-weight: bold;
}
body {
  justify-content: center;
  justify-items: center;
  background-image: url('cr.jpg');
  background-size: cover;
  background-position: center; 
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

div {
  background-color: rgb(120, 224, 239);
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  border-radius: 50px;
  border: 7px solid green;
  height: 450px;
  width: 450px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

div:hover {
  transform: scale(1.05);
}

.inputValue {
  width: 95%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 20px; /* Increased font size from 16px to 20px */
  height: 30px; /* Added to increase input box height */
  transition: border-color 0.3s ease;
}

.inputValue:focus {
  border-color: #4CAF50;
  outline: none;
}

label {
  font-size: 18px;
  margin: 10px 0;
  color: #0f57d5;
}

select {
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  background-color: white;
  transition: border-color 0.3s ease;
}

select:focus {
  border-color: #4CAF50;
  outline: none;
}

button {
  padding: 12px 24px;
  margin-top: 20px;
  border: none;
  border-radius: 5px;
  background-color: #4CAF50;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}

button:active {
  transform: translateY(0);
}

@media (max-width: 500px) {
  div {
    width: 80%;
    height: 80%;
    
    border-radius: 50%;
    box-shadow: 0px 0px 10px 25px #0f57d5;
    margin: 20px;
    overflow: auto;
  }

  .inputValue {
    width: 70%; /* Keep your preferred width */
    font-size: 18px;
    height: 25px;
     /* Standardize padding, remove padding-left */
    margin:  auto; /* Center horizontally */
    border-radius: 5px; /* Ensure consistency */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
  }

  label {
    font-size: 16px;
    text-align: center;
  }

  select {
    width: 70%; /* Match input width for consistency */
    font-size: 14px;
    padding: 10px;
    margin: auto; /* Center horizontally */
    border-radius: 5px; /* Ensure consistency */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
  }

  button {
    width: 100%;
    font-size: 14px;
    padding: 10px 20px;
  }
  #msgbox{
    font-size: 18px;
    width: auto;
  }
}

