*{
font-family: 'Montserrat', sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,500;0,600;1,700&display=swap');
@font-face {
    font-family: 'Montserrat';
    src: url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,500;0,600;1,700&display=swap');
   
  }

form {
    display: block;
    margin: auto;
    width: 385px;

}
div {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
  }

th {

    font-weight: 400;
}
#container {
  background-color: #fff!important;
  height: 40px;
  display: block;
    padding: 20px;
}
button {
  margin: 10px;
  padding: 10px;
  color: white;
  font-weight: 500;
  background: #0089ff;
  border: none;
  border-radius: 7px;
  padding-right: 15px;
  padding-left: 15px;
  font-size: 15px;
  transition: all 2s cubic-bezier(0.16, 1, 0.3, 1);
}
button:hover{
background: #006dcc;
}
.eron{
  color: rgb(255, 92, 92);
}
input{
  margin:2px;
}

/* Range slider cusomization */
.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 30px;
  background: #fff;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  border-radius: 5px;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 35px;
  height: 35px;
  background: #0089ff;
  cursor: pointer;
  border-radius: 17.5px;
  outline: none;
}

.slider::-moz-range-thumb {
  width: 35px;
  height: 35px;
  background: #0089ff;
  cursor: pointer;
}

.textarea {
  -webkit-appearance: none;
  width: 100%;
  height: 30px;
  outline: none;
  border: none; 
  /* border-bottom: 4px solid #34a0ff; */

border-radius: 5px;
}