* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
  --primary-color: #0051A0;
  --secondary-color: #858034;
  --color-green: green;
  --form-max-width: 600px;
}
body {
  background: #fff;
  font-family:Arial, Helvetica, sans-serif;
}
/* custom scroll bar */
::-webkit-scrollbar {width: 0px !important;}
::-webkit-scrollbar-track {background: #242526;}
::-webkit-scrollbar-thumb {background: #3A3B3C;}

.page-load {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  z-index: 200000;
}
.page-load.active {
  display: flex
}
.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
}
.loader::before,
.loader::after {    
  content:"";
  grid-area: 1/1;
  --c:no-repeat radial-gradient(farthest-side,#25b09b 92%,#0000);
  background: 
    var(--c) 50%  0, 
    var(--c) 50%  100%, 
    var(--c) 100% 50%, 
    var(--c) 0    50%;
  background-size: 12px 12px;
  animation: l12 1s infinite;
}
.loader::before {
  margin: 4px;
  filter: hue-rotate(45deg);
  background-size: 8px 8px;
  animation-timing-function: linear
}
#loader-text {
  color: #fff;
}

@keyframes l12 { 
  100%{transform: rotate(.5turn)}
}

.carou, .login-page {
  height: 100vh;
  position: relative;
  padding: 20px;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .carou, .login-page {
    height: fit-content;
  }
}

.carou {
  background: var(--primary-color);
  padding: 100px 50px;
}
.carou-con {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.copyright {
  position: absolute;
  bottom: 50px;
}

.reg-btn {
  color: var(--primary-color);
  background: #fff;
  padding: 10px;
  width: 150px;
  outline: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


.logo-img {
  width: 100px;
  height: auto;
}
.logo-img2 {
  width: 100px;
  height: auto;
  display: block;
  margin: auto;
}
.carou-content.h1 {
  font-weight: 700;
  color: #fff;
  margin-top: 50px;
}

.owl-carousel {
  position: relative;
}


/* Center the dots */
.custom-dots {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  width: 100%;
}

/* Style the dots */
.owl-dot {
  text-align: center;
  width: 40%;
  padding: 10px;
  position: relative;
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}

/* Active dot style */
.owl-dot.active {
  background: var(--primary-color);
  color: #fff;
}


.login-form, .signup-form {
  padding: 50px;
}
.login-form {
  max-width: 600px;
  margin: 0 auto;
}
.input-con {
  margin-bottom: 20px;
}
label {
  display: block;
  font-weight: 400;
  margin-bottom: 10px
}
label[for="terms"] {
  display: inline-block;
}
input:not([type="checkbox"]), select, textarea {
  display: block;
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 100%;
  outline: none;
  background: #eee;
}
input:not([type="submit"]):focus,
textarea:focus, select:focus {
  border: 1px solid var(--primary-color);
  background: #fff;
}
input[type=submit] {
  background: var(--primary-color);
  color: #fff;
  cursor: pointer;
}
input[type=submit]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.custom-control-label {
  font-weight: normal !important;
}


.lang-select{
  width: fit-content;
  margin-left: auto;

}
#setupForm {
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.form-group {
  display: flex;
  gap: 7%;
}
.form-group > div {
  width: 100%;
}

.cus-form-control{
  margin-bottom: 25px !important;
}

input.error, select.error, textarea.error{
  outline: .5px solid red;
}
#setupForm button {
  display: block;
  width: 100%;
  padding: 10px;
  color: white;
  background-color: var(--primary-color);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: .2s ease;
  outline: none;
}
#setupForm button#navLeft {
  background-color: #fff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
#setupForm button:hover {
  background-color: #fff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
#setupForm button#navLeft:hover {
  color: white;
  background-color: var(--primary-color);
  border: none;
}
span#error,
span[id$="-error"] {
  font-size: x-small;
  color: red;
  margin-top: 2px;
}

.group-two, .group-three, .group-four, .group-five, .group-six {
  display: none;
}


.steps {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 40px;
}
.steps .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  color: #999;
  font-size: 18px;
  font-weight: 500;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #e0e0e0;
  transition: all 500ms ease;
  transition-delay: 0s;
  z-index: 5;
}
.steps .circle.active {
  transition-delay: 100ms;
  border-color: rgb(36, 143, 36);
  background: rgb(36, 143, 36);
  color: #fff;
}
.progress-bar  {
  position: absolute;
  height: 2px;
  width: 100%;
  background: #e0e0e0;
  
}
.progress-bar .indicator {
  position: absolute;
  height: 100%;
  width: 0%;
  background: rgb(36, 143, 36);
  transition: all 300ms ease;
}


.arrows {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 900;
}
.nav-group {
  cursor: pointer;
  width: 150px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-upgrade {
  width: 100%;
  position: relative;
}
.form-upgrade input {
  display: inline-block;
  width: 100%;
  padding-right: calc(10px + 115px)
}
.upgrade-icon {
  position: absolute;
  top: 1.5px;
  right: 0;
  display: inline-block !important;
  text-align: center !important;
  box-sizing: border-box;
  width: 115px !important;
  padding: 9px !important;
  cursor: pointer;
  border: none !important;
  background: none !important;
  color: var(--primary-color) !important;
}
.upgrade-icon:hover {
  background: var(--primary-color) !important;
  color: #fff !important;
  border: none !important;
}
.upgrade-icon:disabled {
  cursor: not-allowed;
}

i.rotate {
  animation: rotate 1s linear infinite;
}
@keyframes rotate {
  from {transform: rotate(0deg);}
  to {transform: rotate(359deg);}
}

fieldset {
  margin-bottom: 20px;
  padding: 15px;
}
legend {
  font-size: 20px;
  display: inline;
}
.summary-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.summary-section p:first-child {
  font-weight: bolder;
}

.summary-section p:nth-child(2) {
  color: #000;
}



#setupForm section {
  position: relative;
}

@media screen and (max-width: 767px) {
  #setupForm .form-group {
      display: flex !important;
      flex-direction: column !important;
  }
}

.n_error {background:red;color:#fff}
.n_success {background:green;color:#fff}
.n_warning {background:rgb(189, 189, 2);color:#000}
.n_info {background:blue;color:#fff}
.n_network {background:orange;color:#000}