.modal {
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
}

.modal-dialog {
  box-sizing: border-box;
  width: 400px;
  min-height: 140px;
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.3);
}

.login-link-popup:hover,
.register-link-popup:hover {
  color: #00a0b0;
  text-decoration: underline;
}

.modal-content {
  border: none;
}

.styles-img-button {
  cursor: pointer;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 0 14px;
  margin: 0 16px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-title {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}

.modal-body {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  gap: 20px;
}

.styles-input {
  width: 100%;
  padding: 13px 20px;
  border: none;
  border-radius: 2px;
  background: #f1f1f1;
  color: #777;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-style: italic;
  -webkit-font-smoothing: antialiased;
}

.styles-input:focus {
  border: none;
  outline: none;
  box-shadow: inset 0 0 1px rgba(136, 136, 136, 0.85), 0 0 8px #52a8ec;
}

.custom-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.error-message {
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

.form-contror {
  background: #f1f1f1;
  border-radius: 0;
  color: #777;
}

.btn-primary {
  background-color: #00a0b0;
  color: #fff;
  padding: 11px 20px;
  font-size: 14px;
  font-family: Arial, Helvetica, Tahoma, sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-primary:hover {
  background-color: #0a8b98;
  border-color: #026c77;
}

.custom-checkbox-row input[type="checkbox"] {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.custom-checkbox-row input[type="checkbox"] + label {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #777;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  position: relative;
  text-indent: 27px;
  vertical-align: middle;
  width: 100%;
  word-break: break-word;
}

.custom-checkbox-row input[type="checkbox"] + label:before {
  content: "";
  display: block;
  position: absolute;
  left: 7px;
  top: 2px;
  height: 12px;
  width: 4px;
  border-bottom: 2px solid #2e859e;
  border-right: 2px solid #2e859e;
  z-index: 2;
  visibility: hidden;
  transform: scale(0) rotate(45deg);
  opacity: 0;
  transition: visibility 0.25s ease-in-out, opacity 0.25s ease-in-out,
    transform 0.25s ease-in-out;
}

.custom-checkbox-row input[type="checkbox"] + label:after {
  content: "";
  display: block;
  height: 18px;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  background: rgba(0, 0, 0, 0.05);
  transition: background-color 0.25s ease-in-out, border-color 0.25s ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.custom-checkbox-row input[type="checkbox"]:checked + label:before {
  visibility: visible;
  opacity: 1;
  transform: scale(1) rotate(45deg);
}

.modal-footer-text {
  text-align: center;
  margin-top: 20px;
}

.modal-footer-text p {
  font-size: 12px;
  color: #777;
}

.modal-footer-text a {
  color: #00a0b0;
  text-decoration: none;
}

.show {
  display: flex !important;
}

.pull-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.show {
  display: flex !important;
}

.b-popup__content {
  font-size: 14px;
  line-height: 18px;
  color: #777 !important;
}

.login-link-popup,
.register-link-popup {
  color: #00a0b0;
}

