@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #000;
  font-weight: 500;
}

.installer-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 30px;
}

.installer-box {
  width: 100%;
  max-width: 940px;
  box-shadow: 0 10px 25px rgba(0,0,0, 0.15);
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}

.installer-header {
  padding: 15px 30px;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
  background-color: #030912;
}

.logo {
  max-width: 175px;
  max-height: 55px;
}

.installer-body {
  padding: 30px;
}

.installer-footer {
  padding: 15px 30px;
  border-top: 1px solid #e5e5e5;
  text-align: right;
}

.btn {
  padding: 12px 25px;
  background-color: #11c26d;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border-radius: 4px;
  border: none;
}

.disbale-btn {
  pointer-events: none;
  opacity: 0.65;
}

.list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.check-list li+ li {
  margin-top: 15px;
}

.check-list li i {
  margin-right: 10px;
}


.success-message {
  text-align: center;
}

.gg-check-o {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs,1));
  width: 22px;
  height: 22px;
  border: 2px solid;
  border-radius: 100px;
  border-color: #11c26d;
}
.gg-check-o::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  left: 3px;
  top: -1px;
  width: 6px;
  height: 10px;
  border-color: currentColor;
  border-width: 0 2px 2px 0;
  border-style: solid;
  transform-origin: bottom left;
  transform: rotate(45deg);
  color: #11c26d;
}

.gg-check-o-big {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs,1));
  width: 75px;
  height: 75px;
  border: 3px solid;
  border-radius: 100px;
  border-color: #11c26d;
  display: inline-block;
}
.gg-check-o-big::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  left: 16px;
  top: -1px;
  width: 20px;
  height: 35px;
  border-color: currentColor;
  border-width: 0 3px 3px 0;
  border-style: solid;
  transform-origin: bottom left;
  transform: rotate(45deg);
  color: #11c26d;
}


.gg-close-o {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs,1));
  width: 22px;
  height: 22px;
  border: 2px solid;
  border-radius: 40px;
  border-color: #dc3545;
}
.gg-close-o::after,
.gg-close-o::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 12px;
  height: 2px;
  background: #dc3545;
  transform: rotate(45deg);
  border-radius: 5px;
  top: 8px;
  left: 3px;
}
.gg-close-o::after {
  transform: rotate(-45deg);
}

.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

.text-white {
  color: #fff;
}

.h1 {
  font-size: 42px;
}
.h2 {
  font-size: 36px;
}
.h3 {
  font-size: 32px;
}
.h4 {
  font-size: 28px;
}
.h5 {
  font-size: 24px;
}
.h6 {
  font-size: 20px;
}

.text-small {
  font-size: 14px;
}

.mb-3 {
  margin-bottom: 15px;
}
.mb-4 {
  margin-bottom: 20px;
}

.m-0 {
  margin: 0;
}

.text-muted {
  color: #616060;
}

.form-control {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #c1c1c1;
  border-radius: 5px;
  height: 45px;
}

.form-control:focus {
  border-color: #939393;
  box-shadow: 0 2px 5px rgba(0,0,0, 0.15);
  outline: none;
}

label {
  margin-bottom: 10px;
  display: inline-block;
  font-size: 15px;
}