.msrg-form input[type=text], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.msrg-form button[type=submit] {
  width: 100%;
  /* background-color: #0066cc; */
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.msrg-form button[type=submit]:focus {
  /* background-color: #064d94; */
}

.msrg-form button[type=submit]:hover {
  /* background-color: #064d94; */
}

.msrg-form button[disabled] {
  cursor: not-allowed;
  color: #b3b3b3;
  /* background-color: #023262; */
}
.msrg-form button[disabled]:hover {
  /* background-color: #023262; */
  color: #b3b3b3;
}

.msrg-form .wrapper {
  border-radius: 5px;
  /* background-color: #f2f2f2; */
  padding: 20px;
}

.msrg-alert {
  padding: 20px;
  color: white !important;
  margin-bottom: 15px;
}
.msrg-alert.success {
  background-color: #00c416 !important;
}
.msrg-alert.danger {
  background-color: #c40000 !important;
}
.msrg-alert.info {
  background-color: #008dc4 !important;
}
.msrg-alert.closebtn {
  padding: 0;
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

/* When moving the mouse over the close button */
.msrg-form .closebtn:hover {
  color: black;
}

.msrg-form .d-none {
  display: none;
}

#msrg-bar {
  transition: 0.3s;
  margin: 10px 0px;
  width: 0%;
  height: 0px;
  display: none;
  background-color: #008dc4;
  text-align: center; /* To center it horizontally (if you want) */
  line-height: 30px; /* To center it vertically */
  color: white;
}

.msrg-alert label {
  max-width: 700px;
}

.msrg-close-modal-btn {
  width: 100%;
  background-color: #0066cc;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}