body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f7;
}

h1 {
    text-align: center;
    color: #008080;
}

form {
    width: 750px;
    margin: 20px auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
}

fieldset {
    border: 1px solid #ddd;
    margin-bottom: 20px;
    margin-top: 40px;
    padding: 15px;
}

legend {
    color: #008080;
    font-weight: bold;
    padding: 0 10px;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="range"],
input[list],
textarea {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    box-sizing: border-box;
}

.time-input {
    width: 120px;
    display: block;
    margin: 0 auto;
}

textarea {
    resize: vertical;
}

button {
    display: block;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #008080;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #006666;
}
.gridy
{
margin-top: 20px;
display: grid;
grid-template-columns: repeat(2,1fr);
gap: 20px;
}
.slider {
  margin-top: 40px;
   /* -webkit-appearance: none;*/
  width: 100%;
  height: 15px;
  border-radius: 5px;  
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%; 
  background: aqua;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04AA6D;
  cursor: pointer;
}
