﻿body .input-group {
  margin-bottom: 8px;
}
body .input-group .input-container {
  position: relative;
}
body .input-group .input-container .error {
  position: absolute;
  top: 2px;
  right: 4px;
  font-size: 0.8rem;
  color: red;
}
body .input-field {
  padding: 8px;
  box-sizing: border-box;
  width: 100%;
  outline: none !important;
  border: 1px solid gray;
  border-radius: 4px;
}
body .input-field:focus {
  border: 1px solid lightblue;
}
body button {
  cursor: pointer;
}
body button.btn-primary {
  padding: 8px;
  border-radius: 4px;
}
body button.btn-primary.btn-blue {
  background: #52A3EE;
  border: 1px solid #52A3EE;
  color: #fff !important;
}
body button.btn-primary.btn-blue:hover {
  background: #73B4F0;
  border: 1px solid #73B4F0;
}
body button.btn-primary.btn-blue[disabled="disabled"] {
  border: 0.05vw solid transparent !important;
  background: #FAFAFA !important;
  color: #8A8A8A !important;
  opacity: 1;
  cursor: not-allowed;
}
body button.btn-primary.btn-blue[disabled="disabled"]:hover {
  border: 0.05vw solid transparent;
  background: #FAFAFA !important;
  color: #8A8A8A !important;
}