<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
  form {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0px 0px 10px 5px #7393B3;
    border-radius: 10px;
    text-align: center;
		font-weight: bold;

  }

input[type="text"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid lightgray;
  font-size: 18px;
  font-weight: bold;
}


  button[type="button"] {
    width: 50%;
    padding: 10px;
    background-color: #088F8F		;
    border-radius: 10px;
    border: none;
    font-size: 18px;
    cursor: pointer;
  }

  button[type="button"]:hover {
    background-color: #5F9EA0	;
    color: white;
  }

#result {
  margin-top: 20px;
  font-size: 30px;
  font-weight: bold;
  color: #096E70;
  text-shadow: 2px 2px #D1D1D1;
}


@media only screen and (max-width: 480px) {
  form {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0px 0px 10px 5px #7393B3;
    border-radius: 10px;
    text-align: center;
		font-weight: bold;

  }

input[type="text"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid lightgray;
  font-size: 18px;
  font-weight: bold;
}


  button[type="button"] {
    width: 70%;
    padding: 10px;
    background-color: #088F8F		;
    border-radius: 10px;
    border: none;
    font-size: 18px;
    cursor: pointer;
  }

  button[type="button"]:hover {
    background-color: #5F9EA0	;
    color: white;
  }

#result {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #096E70;
  text-shadow: 2px 2px #D1D1D1;
}

}</pre></body></html>