@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{margin: 0; padding: 0;}

body{background: #171717; font-family: "Inter", sans-serif;}
.container {
    max-width: 800px;
    margin: 0px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
header {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo img{width: 100%}
.logo {
    width: 250px;
    margin-bottom: 30px;
}
.container-inner h2, .container-inner {
    color: #fff;
}

.container-inner h2 {
    font-size: 40px;
    margin-bottom: 30px;
}
.container-inner p {
    color: #ccc;
    line-height: 26px;
}
button.btn-main {
    background: #6e12ff;
    background: linear-gradient(90deg, #8909ff 0%, #6e12ff 100%);
    padding: 19px 40px;
    border: none;
    border-radius: 15px;
    color: #fff;
    margin-top: 30px;
    font-weight: 700;
    font-size: 15px;
    outline: none;
}
.footer button {
    background: none;
    border: 2px solid #324158;
    color: #ccc;
    padding: 7px 21px;
    border-radius: 11px;
    display: inline-block;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}
.footer {
    margin-top: 40px;
}

.footer button  img {
    width: 12px;
    margin-right: 5px;
}
.footer p {
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 15px;
}
.container-inner {
    flex: 1;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
}
.container-inner-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 70px 0 30px;
}
.success-message p {
    color: #00ffb5;
}
.success-message {
    margin-top: 20px;
    position: absolute;
    bottom: 40px;
}
.success-message p {
    color: #00ffb5;
    font-size: 12px;
    line-height: 20px;
}
.btn-main{cursor: pointer;}
.footer button img {
    width: 12px;
    margin-right: 5px;
    position: relative;
    top: 2px;
}
.footer button{cursor: pointer !important;}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
input#myInput {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
span#myTooltip {
    position: absolute;
    left: 135px;
    color: #00ffb5;
    width: 90px;
}

@media screen and (max-width:767px){
 .container-inner {
    padding: 0 20px;
}
.container-inner h2 {
        font-size: 22px;
        margin-bottom: 25px;
}
.container-inner p {
    color: #ccc;
    line-height: 26px;
    font-size: 13px;
}
 .container-inner p br{
     display: none;
}
    .container-inner p {
        color: #ccc;
        line-height: 20px;
        font-size: 11px;
    }
button.btn-main {
    padding: 15px 30px;
    border-radius: 15px;
    margin-top: 30px;
    font-weight: 700;
    font-size: 12px;
}
.footer p {
    font-size: 13px;
}
.container-inner-wrapper {
    padding: 30px 0 30px;
}
.logo {
    width: 210px;

    }    
    span#myTooltip {
    left: 127px;
    font-size: 12px;
    top: 10px;
}
.success-message {
    left: 20px;
    right: 20px;
}    
.success-message p {
        color: #00ffb5;
        font-size: 10px !important;
        line-height: 16px;
}
    
}