.reg-message {
  font-weight: 500;
  width: 100%;
  padding: 6px;
  margin: 10px 0px;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 5px;
}
.reg-message p {
  margin: 0;
  padding: 0;
}
.reg-error {
  color: #000;
  border-left: 4px solid #f4484a;
  background-color: #ffe1e2;
}

.reg-success {
  color: #336600;
  border-left: 4px solid #336600;
  background-color: #e2f4db;
}

.edit-link {
  cursor: pointer;
}

.rw-error {
  color: #ff0000;
}
input.rw-error {
  border: 1px solid #ff0000 !important;
}
textarea.rw-error {
  border: 1px solid #ff0000 !important;
}

/* form */

.register-form-wrap {
  max-width: 700px;
  width: 100%;
  border: 2px solid #f1f1f1;
  background-color: #fff;
  padding: 25px;
  border-radius: 5px;
  font-family: sans-serif;
}

.register-form-wrap .register-message {
  width: 100%;
}

.register-message-wait {
  text-align: center;
}

.register-form-wrap .register-fields-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.register-fields-wrap h2 {
  margin: 0 !important;
  width: 100%;
  font-size: 18px;
  position: relative;
  padding-bottom: 8px;
}
.register-fields-wrap h2:after {
  content: "";
  width: 30px;
  height: 4px;
  position: absolute;
  background: linear-gradient(to right, rgb(33, 136, 56), rgb(33, 136, 56));
  bottom: 0;
  left: 0;
}

.register-fields-wrap .reg-form-group {
  margin: 8px 0px 8px 0px;
  width: 100%;
}

.register-fields-wrap .reg-form-group .title {
  font-weight: 500;
  margin-bottom: 5px;
  display: inline-block;
  width: 100%;
}

.reg-form-group label.rprb {
  display: inline;
  margin-right: 8px;
  cursor: pointer;
}

.reg-form-group label.rpcb {
  display: inline;
  margin-right: 8px;
  cursor: pointer;
}

.reg-form-group span.description {
  font-style: italic;
  font-size: 12px;
}

.reg-form-group input[type="text"],
.reg-form-group select,
.reg-form-group input[type="password"],
.reg-form-group input[type="email"] {
  height: 45px;
  width: 100%;
  outline: none;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding-left: 15px;
  transition: all 0.3s ease;
}

.reg-form-group input[type="text"]:focus,
.reg-form-group select:focus,
.reg-form-group input[type="password"]:focus,
.reg-form-group input[type="email"]:focus {
  border-color: #007bff;
}

.reg-form-group textarea {
  width: 100%;
  outline: none;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 15px;
  transition: all 0.3s ease;
}

.reg-form-group textarea:focus {
  border-color: #007bff;
}

.reg-form-group input[type="checkbox"] {
  outline: none;
  border-radius: 5px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
  margin-right: 5px;
}

.reg-form-group input[type="radio"] {
  outline: none;
  border-radius: 5px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
  margin-right: 5px;
}

.register-submit {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  justify-content: left;
  margin-top: 20px;
}

.register-submit input[type="submit"],
.register-submit input[type="button"],
.register-submit input[type="reset"] {
  width: 20%;
  min-width: 200px;
  padding: 10px;
  height: 45px;
  outline: none;
  border-radius: 5px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 1px;
  margin-right: 10px;
}
.register-submit input[type="submit"]:hover,
.register-submit input[type="button"]:hover,
.register-submit input[type="reset"]:hover {
  text-decoration: none;
}

/* subscription */
.subscription_error {
  color: #000;
  border: 1px solid #f5a9aa;
  font-weight: 500;
  width: 100%;
  padding: 6px;
  margin: 10px 0px;
  background-color: #fceeee;
  display: inline-block;
}
.subscription-box {
  border: 1px solid #a3a3a3;
  width: 100%;
  padding: 10px;
  background-color: #fff;
}
.subscription-box h3 {
  padding: 0px !important;
  margin: 0px !important;
}

.sub-btn {
  -moz-user-select: none;
  background-color: #428bca;
  border-color: #357ebd;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857;
  margin-bottom: 0;
  padding: 6px 12px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

a.sub-btn {
  text-decoration: none !important;
  color: #fff !important;
}
a.sub-btn:hover {
  text-decoration: none !important;
  color: #fff !important;
}

.subscription-details {
  border: 1px solid #a3a3a3;
  width: 100%;
  padding: 10px;
}
.subscription-details h3 {
  padding: 0px !important;
  margin: 0px !important;
}

.subscription-active {
  font-weight: 600;
  color: #34a853;
}

.subscription-inactive {
  font-weight: 600;
  color: #ed2d2d;
}

@media (max-width: 400px) {
  .subscription-box {
    width: 100%;
  }
}
