body { background-color: #61c6ef;
  background-image: url("src/wall.webp");
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
}

.bg_box {
  position: absolute;
       top: 50%;
       left: 50%;
       margin-right: -50%;
       transform: translate(-50%, -50%);
       /* padding: 15px; */
}

.card-bg_box {
  width: 500px;
  margin: auto;
  padding-top: 50px;
}

.boxx {
  margin: auto;
  width: 500px;
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  padding: 15px;
}

.status-box{
  width: 500px;
  border-radius: 25px;
  /* padding: 15px 15px; */
}

label {
  font-size: 18px;
  /* margin: 0px 10px 0px 10px; */
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  [class*="bg_box"] {
      width: 90%;
  }
  [class*="card-bg_box"] {
    width: 90%;
}
  [class*="boxx"] {
      width: 95%;
  }
  [class*="status-box"] {
    width: 100%;
}
  
}

input[type=text], select {
  width: 95%;
  padding: 8px 8px;
  margin: 5px 10px 8px 10px;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size:18px;
}

input[type=check_button] {
  width: 70%;
  background-color: #e20025;
  color: white;
  padding: 14px 20px;
  margin-bottom: 25px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  font-size:18px;
}

.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #e1e7ea;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #d7f3ff;
}

::-ms-input-placeholder { /* Microsoft Edge */ 
  color: #d7f3ff;
}


/* link */
a:link {
  color:hotpink;
}
a:visited {
  color: hotpink;;
}
/* mouse over link */
a:hover {
  color: hotpink;
}


