/* Universal UI Elements Styles */
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}
ul {
  display: block;
  list-style-type: none;
  padding-left: 0;
}
i {
  display: inline-block;
  padding: .75em;
}
/* Form Elements */
input[type="text"],
input[type="email"] {
  width: 100%;
  padding: .3em .6em;
  margin: .7em 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0.03em solid #5f6363;
}
input[type="text"]:hover,
input[type="email"]:hover {
  border: 0.05em solid #109ceb;
  background-color: #e0e1e1;
}
input[type="text"]:focus,
input[type="email"]:focus {
  border: 0.05em solid #109ceb;
  background-color: #e0e1e1;
}
input[type='submit'] {
  border: 0.03em solid #5f6363;
  padding: .5em;
}
input[type='submit']:hover {
  border: 0.05em solid #109ceb;
  background-color: #e0e1e1;
  color: #141515;
}
input[type='submit']:focus {
  border: 0.05em solid #109ceb;
  background-color: #e0e1e1;
  color: #141515;
}
textarea {
  width: 100%;
  height: 9em;
  margin: .7em 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  resize: none;
  margin-top: 1em;
  border: 0.03em solid #5f6363;
  padding: .5em;
}
textarea:hover {
  border: 0.05em solid #109ceb;
  background-color: #e0e1e1;
  color: #141515;
}
textarea:focus {
  border: 0.05em solid #109ceb;
  background-color: #e0e1e1;
  color: #141515;
}
/* UI Dark Light Toggler */
input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}
label {
  cursor: pointer;
  text-indent: -9999px;
  width: 2em;
  height: 1.5em;
  background: #141515;
  display: block;
  border-radius: 2em;
  position: relative;
}
label:after {
  content: '';
  position: absolute;
  top: .1em;
  left: .1em;
  width: 1.3em;
  height: 1.3em;
  background: #fdfdfd;
  border-radius: 1em;
  transition: 0.3s;
}
input:checked + label {
  background: #5f6363;
}
input:checked + label:after {
  left: calc(95%);
  transform: translateX(-100%);
}
label:active:after {
  width: .75em;
}
.toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
}

/*# sourceMappingURL=elements.css.map */