body {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "Montserrat", sans-serif;
}

.input-group {
  align-items: center;
}

.rounded {
  border-radius: 25px !important;
}

.switch {
  position: relative;
  display: inline-block;
  top: 3px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.btn-secondary {
  color: #363642;
  background: linear-gradient(to bottom, #ffffff, #f6f7f9);
  border-color: #d7dce5;
  box-shadow: 0 1px 0 0 rgba(20, 20, 31, 0.05);
  padding-top: 7px;
  padding-bottom: 7px;
}

.btn-secondary:hover {
  color: #363642;
  background: linear-gradient(to bottom, #ffffff, #d7dce5);
  border-color: #d7dce5;
}

.btn-secondary:focus, .btn-secondary.focus {
  color: #363642;
  background-color: #dfe3ea;
  border-color: #d7dce5;
  box-shadow: 0 0 0 1px rgba(217, 218, 222, 0.5);
}
