body {
  font-family: "Roboto", sans-serif;
  background-color: #fff; }

p {
  color: #b3b3b3;
  font-weight: 300; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Roboto", sans-serif; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a:hover {
    text-decoration: none !important; }

.content {
  padding: 7rem 0; }

h2 {
  font-size: 20px; }

.half, .half .container > .row {
  height: 100vh; }

@media (max-width: 991.98px) {
  .half .bg {
    height: 500px; } }

.half .contents, .half .bg {
  width: 50%; }
  @media (max-width: 1199.98px) {
    .half .contents, .half .bg {
      width: 100%; } }
  .half .contents .form-group, .half .bg .form-group {
    margin-bottom: 0;
    border: 1px solid #efefef;
    padding: 15px 15px;
    border-bottom: none; }
    .half .contents .form-group.first, .half .bg .form-group.first {
      border-top-left-radius: 7px;
      border-top-right-radius: 7px; }
    .half .contents .form-group.last, .half .bg .form-group.last {
      border-bottom: 1px solid #efefef;
      border-bottom-left-radius: 7px;
      border-bottom-right-radius: 7px; }
    .half .contents .form-group label, .half .bg .form-group label {
      font-size: 12px;
      display: block;
      margin-bottom: 0;
      color: #b3b3b3; }
  .half .contents .form-control, .half .bg .form-control {
    border: none;
    padding: 0;
    font-size: 20px;
    border-radius: 0; }
    .half .contents .form-control:active, .half .contents .form-control:focus, .half .bg .form-control:active, .half .bg .form-control:focus {
      outline: none;
      -webkit-box-shadow: none;
      box-shadow: none; }

.half .bg {
  background-size: cover;
  background-position: center; }

.half a {
  color: #888;
  text-decoration: underline; }

.half .btn {
  height: 54px;
  padding-left: 30px;
  padding-right: 30px; }

.half .forgot-pass {
  position: relative;
  top: 2px;
  font-size: 14px; }

.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px; }
  .control .caption {
    position: relative;
    top: .2rem;
    color: #888; }

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0; }

.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
  border-radius: 4px; }

.control--radio .control__indicator {
  border-radius: 50%; }

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #ccc; }

.control input:checked ~ .control__indicator {
  background: #007bff; }

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #1a88ff; }

.control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.9;
  pointer-events: none; }

.control__indicator:after {
  font-family: 'icomoon';
  content: '\e5ca';
  position: absolute;
  display: none;
  font-size: 16px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }

.control input:checked ~ .control__indicator:after {
  display: block;
  color: #fff; }

.control--checkbox .control__indicator:after {
  top: 50%;
  left: 50%;
  margin-top: -1px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b; }

.control--checkbox input:disabled:checked ~ .control__indicator {
  background-color: #7e0cf5;
  opacity: .2; }
  body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

.half {
    display: flex;
    position: relative;
    height: 100vh;
}

.bg {
    flex: 1;
   
    background-size: cover;
}

.contents {
    flex: 1;
    padding: 20px;
    background: #fff;
}

h1, h4 {
    margin: 0;
}

h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

h4 {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.progressbar {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    color: #333;
}

.progressbar li {
    flex: 1;
    text-align: center;
    position: relative;
}

.progressbar input[type="checkbox"] {
    display: none;
}

.progressbar label {
    display: block;
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.progressbar li.active label {
    background-color: #3498db;
    color: #fff;
    transform: scale(1.1);
}

.progressbar li:not(.active) label:hover {
    background-color: #ddd;
    color: #222;
}

.progressbar li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background-color: #f4f4f4;
}

.progressbar li.active::after {
    background-color: #3498db;
}

.progressbar li.active label::before {
    content: "\2713"; /* Checkmark symbol */
    display: inline-block;
    color: #fff;
    background-color: #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

.progressbar li.active label:hover::before {
    background-color: #3498db;
}

.form-group {
    margin-bottom: 20px;
}

label {
    font-size: 16px;
    color: #333;
}

input,
select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.radio-inline {
    display: flex;
}

.radio {
    margin-right: 20px;
    cursor: pointer;
}

.btn-primary {
    background-color: #3498db;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #267bb5;
}
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
}

/* Container Styles */
#kt_body {
display: flex;
flex-direction: column;
min-height: 100vh;
}

/* Login Container Styles */
#kt_login {
flex: 1;
display: flex;
flex-direction: column;
}

/* Login Content Container Styles */
.login-container {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
background-color: #fff; /* Set your desired background color */
}

/* Login Content Styles */
.login-content {
width: 100%;
max-width: 400px; /* Adjust the width as needed */
padding: 15px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Login Logo Styles */
.login-logo img {
max-width: 100%; /* Make sure the logo doesn't exceed its container */
}

/* Wizard Nav Styles */
.wizard-nav {
margin-top: 15px;
}

/* Wizard Steps Styles */
.wizard-steps {
display: flex;
justify-content: space-between;
align-items: center;
}

/* Wizard Step Styles */
.wizard-step {
flex: 1;
padding: 10px;
text-align: center;
border: 1px solid #ddd;
border-radius: 5px;
}

/* Wizard Step Current State Styles */
.wizard-step[data-wizard-state="current"] {
background-color: #007bff;
color: #fff;
}

/* Wizard Step Number Styles */
.wizard-step span {
font-size: 18px;
font-weight: bold;
}

/* Wizard Step Title Styles */
.wizard-step small {
display: block;
font-size: 12px;
margin-top: 5px;
}

/* Create Account Heading Styles */
.font-size-h2,
.font-size-h1-lg {
font-size: 24px;
font-weight: bold;
}

/* Create Account Subheading Styles */
.font-weight-bolder {
font-weight: bold;
}

/* "Already have an Account" Styles */
.font-weight-bold {
font-weight: bold;
}

/* Sign In Link Styles */
.text-primary {
color: #007bff;
text-decoration: none;
font-weight: bold;
}

/* Tooltip Icon Styles */
.icon-lg {
font-size: 1.5rem;
color: #007bff;
}

/* Modal Styles */
.modal-content {
border-radius: 10px;
}

/* Modal Title Styles */
.modal-title {
font-weight: bold;
}

/* Modal Body Styles */
.modal-body {
text-align: left;
}

/* Close Button Styles */
.close {
font-size: 1.5rem;
font-weight: bold;
color: #000;
}

/* Close Button Hover Styles */
.close:hover {
color: #007bff;
}

/* Instructions Button Styles */
.btn-hover-light-primary {
background-color: transparent;
border: none;
cursor: pointer;
}

/* Instructions Button Icon Styles */
.icon-3x {
font-size: 1.875rem;
color: #007bff;
}

/* Forgot Password Link Styles */
.forgot-pass {
color: #007bff;
text-decoration: none;
font-weight: bold;
}

/* Submit Button Styles */
.btn-primary {
background-color: #007bff;
color: #fff;
border: none;
padding: 10px;
cursor: pointer;
}

/* Remember Me Checkbox Styles */
.control {
display: inline-block;
position: relative;
padding-left: 30px;
cursor: pointer;
font-size: 14px;
user-select: none;
}

.control input {
position: absolute;
opacity: 0;
cursor: pointer;
}

.control__indicator {
position: absolute;
top: 0;
left: 0;
height: 20px;
width: 20px;
background-color: #ddd;
border-radius: 4px;
}

.control:hover input ~ .control__indicator,
.control input:checked ~ .control__indicator {
background-color: #007bff;
}

/* Mobile Number Radio Styles */
.radio-inline {
display: flex;
align-items: center;
}

/* Mobile Number Input Styles */
#txt_signup_mobile_number {
margin-top: 10px;
}

/* Validation Message Styles */
#validationMessage {
color: #dc3545; /* Red color for validation messages */
font-size: 14px;
margin-top: 5px;
}
