* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-image: url("image.png");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 500px;
  height: 680px;
  margin: 0 28px;
  overflow: hidden;
  background-image: linear-gradient(to top, #74d0e0 0%, #6f86d6 100%);
  /* background: rgba(0,0,0,0.2); */
}

h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  font-size: 25px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

select option:disabled {
  color: #ffffff;
  background-color: #666666;
}

input,
select,
textarea {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #A7C7E7;
  /* Light blue border */
  border-radius: 4px;
  background-color: #ffffff;
  /* Slightly transparent background */
  outline: none;
  transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #4A90E2;
  /* Blue on focus */
  background-color: rgba(74, 144, 226, 0.1);
  /* Light blue background on focus */
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #ffffff;
  color: rgb(94, 93, 93);
}

small.error-message {
  display: none;
  color: #D32F2F;
  /* Red for error messages */
  font-size: 12px;
  margin-top: 5px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
}

.submit-btn,
.reset-btn {
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 48%;
  transition: all 0.3s ease;
  margin-bottom: 5px;

}

.submit-btn {
  background-color: #4A90E2;
  /* Blue background */
  color: white;
}

.submit-btn:hover {
  background-color: #357ABD;
  /* Darker blue on hover */
}

.reset-btn {
  background-color: #f44336;
  /* Red background */
  color: white;
}

.reset-btn:hover {
  background-color: #da190b;
  /* Darker red on hover */
}

/* Responsive Design */
@media screen and (max-width: 600px) {
  .container {
    width: 90%;
  }
}