* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased !important;
  font-family: 'Inter', sans-serif;
  color: #2C2D2E;
}

.hide {
  opacity: 0;
}

a {
  text-decoration: none;
}

body {
  min-height: 100vh;
  margin: auto;
  box-sizing: border-box;
  background-color: #F4F4F6;
}

.gray {
  color: #818C99;
}

h1,h2,h3,h4,h5,h6 {
  position: relative;
}

h2,.h2 {
  font-size: 24px;
}

h2.medium,.h2.medium {
  font-weight: 600;
}

h3,.h3 {
  font-size: 18px;
}

h3.medium,.h3.medium {
  font-weight: 500;
}

h4,.h4 {
  font-size: 14px;
  line-height: 20px;
}

h4.medium,.h4.medium {
  font-weight: 500;
}

h4.gray,.h4.gray {
  color: #818C99;
}

h5,.h5 {
  font-size: 13px;
  line-height: 18px;
}

h5.gray,.h5.gray {
  color: #818C99;
}
.separator {
  height: 1px;
  width: 100%;
  background-color: #E8EBED;
}

.light-box {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 1px 0px #E8EBED;
}

label {
  cursor: pointer;
  user-select: none;
}

.form {
  /* max-width: 576px; */
}

.form_button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  transition: all .2s ease;
}

.form_button:hover {
  opacity: 0.8;
}

.btn-default {
  transition: all .2s ease;
  color: #5BB283;
}

.btn-default:hover {
  color: #0e6838;
}

.form_button.primary {
  background: #5BB283;
  color: #fff;
}

.form_button.outline {
  background: transparent;
  border: 1px solid #5BB283;
  color: #5BB283;
}

.form_button.outline:hover {
  border: 1px solid #0e6838;
  color: #0e6838;
}

.form_item {
  cursor: pointer;
}

.form_item_input {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: stretch;
  border-radius: 10px;
  background-color: #F4F4F6;
  padding: 0 20px;
}

.form_item_input > input {
  outline: none;
  border: none;
  background: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 13px;
}

.form_item_input > input::placeholder {
  color: #818C99;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.form_item_password {
  position: relative;
}

.toggle-password_button {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.password_img {
  width: 20px;
  height: 20px;
}

.service-item {
  transition: all .2s ease;
}

.service-item:hover {
  background: #f5f5f5;
}

.card-service{
  height: 100%;
  box-shadow: 1px 1px 3px 0px;
  border-radius: 20px;
}


.required:after {
  content: '*';
	position: absolute;
	right: -11px;
	top: 2px;
	color: #FF4728;
}

.error {
  margin: 8px 0 0 0 !important;
  font-size: 12px;
  color: #FF4728;
}

.error_status {
  color: #FF4728;
  font-size: 72px;
}

.techsupport-btn {
  padding: 2px 4px;
  border-radius: 10px;
  color: #08a484;
  transition: .1s ease-in-out;
}

.techsupport-btn:hover {
  background-color: rgba(0, 0, 0, 0.1) !important;
  color: #08a484;
}

.register-seller-image{
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
}

.register-seller-image .img-fluid{
  width: 100%;
  border-radius: 20px;
  box-shadow: 3px 4px 7px 3px silver;
  object-fit: cover;
}

@media (min-width: 992px) and (max-width: 1280px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 1024px !important;
  }
}

@media (min-width: 768px) and (max-width: 992px)  {
  .container, .container-md, .container-sm {
    max-width: 910px !important;
  }
}