
body {background-color: rgb(10, 150, 255);font-family: 'Cairo', cursive;font-size: 200%;color: white;padding: 0px;margin: 0px;padding-top: 20px;}

h1#DrMosul-heading {font-family: 'Pacifico', cursive;font-size: 90px;font-weight: 500;margin: 0px;}

h2 {font-weight: 500;}

input {outline: none;}


input {background-color: rgb(10, 150, 255);font-family: 'Cairo', cursive;font-size: 30px;color: white;padding: 5px;margin: 20px;border: 2px solid white;border-radius: 5px;transition: background-color 0.15s, color 0.15s;}
input:focus {background-color: white;color: rgb(10, 150, 255);}

::-webkit-input-placeholder {color: white;transition: color 0.15s;}


input:focus::-webkit-input-placeholder {color: rgb(10, 150, 255);}

button.submit-btn {cursor: pointer;background-color: rgb(10, 150, 255);width: 35vw;height: 100px;font-family: 'Cairo', cursive;font-size: 30px;font-weight: 570;color: white;margin: 20px;border: 2px solid white;border-radius: 5px;transition: background-color 0.15s, color 0.15s;}
button.submit-btn:hover {background-color: white;color: rgb(10, 150, 255);}


div.input-error-container {position: relative;}


.Error {display: none;background-color: red;width: 35vw;font-size: 80%;color: white;margin: 5px;margin-left: 30vw;margin-right: 30vw;padding: 5px;border: 2px solid white;border-radius: 5px;}

.Error span::after {content: " ";display: none;margin-top: -5px;border-width: 10px;border-style: solid;border-color: transparent white transparent transparent;position: absolute;top: 40%;right: 100%;}

div#sign-in-error {display: none;background-color: red;width: 50vw;color: white;padding: 5px;border: 2px solid white;border-radius: 5px;}



/* The container */
.checkbox-container {
  display: inline-block;
  position: relative;
  bottom: 15px;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 35px;
  width: 35px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: white;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 10px;
  top: 2px;
  width: 10px;
  height: 20px;
  border: solid #2196F3;
  border-width: 0 4px 4px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

