:root{
    --main-color: #1c1f33;
    --black: #000000;
    /* --white: #ffffff; */
    --white: #F6F6F6;
    --gray: #F1F1F1;
    --font-size-25: 25px;
    --font-size-50: 50px;
    --font-size-16: 16px;
    --font-size-14: 14px;
    --line-height-35: 35px;
    --line-height-60: 60px;
    --line-height-20: 26px;
    --line-height-24: 24px;
    --font-weight-100: 100;
    --font-weight-200: 200;
    --font-weight-300: 300;
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-600: 600;
    --font-weight-700: 700;
    --font-weight-800: 800;
    --font-weight-900: 900;
    --font-style-italic: italic;
    --border-radius-10: 10px;
    --border-radius-15: 15px;
    --border-radius-150: 150px;
    --font-family: "Poppins", sans-serif;
}
body{
    font-family: var(--font-family);
}

.flex{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
.flex label{
    flex-basis: 100%;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    margin-bottom: 8px;
}
.flex input{
    width: 100%;
    border-radius: 8px;
    border: 0;
    box-shadow: none;
    padding: 10px 15px;
    background-color: var(--gray);
    margin: 0;
}

.verify-header-box{
    padding: 50px 0px;
    background-color: var(--main-color);
    text-align: center;
}
.verify-header-box h1{
    font-size: 35px;
    line-height: 45px;
    color: var(--white);
    font-weight: var(--font-weight-900);
    text-transform: uppercase;
}

.verify-certificate-search form button{
    background-color: var(--gray);
    border-radius: 150px;
    font-size: 16px;
    line-height: 26px;
    color: var(--black);
    font-weight: var(--font-weight-600);
    border: none;
    width: 100%;
    padding: 15px 25px;
}
.notification-text{
    font-size: 14px;
    line-height: 24px;
    color: var(--white);
    text-align: center;
    padding: 0;
    margin: 8px 0 0 0;
}


.captcha span{
    color: var(--white);
	line-height: 26px;
	font-size: 16px;
    margin-left: 40px;
}
.captcha .check{
	border-radius: 3px;
	width:30px;
	height: 30px;
	border: 2px solid var(--white);
	display:inline;
	position: absolute;
  cursor: pointer;
}

/*Styles for check animation*/
.check .wrapper{
  width: 25px;
  display: inline;
  margin: 4em auto 0;
}

.check .checkmark{
  stroke: var(--white);
  stroke-dashoffset: 745.74853515625;
  stroke-dasharray: 745.74853515625;
  -webkit-animation: dash 2s ease-out forwards;
  animation: dash 2s ease-out forwards;
}

@-webkit-keyframes dash{
  0%{
    stroke-dashoffset: 745.74853515625;
  }
  100%{
    stroke-dashoffset: 0;
  }
}
@keyframes dash{
  0%{
    stroke-dashoffset: 745.74853515625;
  }
  100%{
    stroke-dashoffset: 0;
  }
}
/*End check animation*/


.passed-box{
  background-color: #176e04;
  padding: 25px 100px;
  box-sizing: border-box;
  /* border-radius: 8px 0px 0px 8px; */
  text-align: center;
}
.icon-container img{
  width: 50px;
}
.passed-box h5{
  font-size: 25px;
  line-height: 35px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
}
.verification-details-box{
  padding: 50px 0px;
}
.verify-item-box{
  background-color: var(--gray);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 25px 50px;
}
.verify-item-box h6{
  font-size: 16px;
  line-height: 26px;
  color: var(--black);
  text-align: center;
  padding: 0;
  margin: 0;
}
.verify-item-box p{
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  color: var(--black);
  text-align: center;
  padding: 0;
  margin: 0;
}

header{
  background-color: #F6F6F6;
  padding: 5px 0px;
}
.logo-container{
  width: 100px;
}
.logo-container img{
  width: 100%;
}
.nav-container{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
.nav-container a{
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 50px;
  border-radius: 8px;
  background-color: var(--main-color);
  display: inline-block;
}

.certificate-new{
  background-image: url("../images/certificate-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 85vw;
  height: auto;
  background-color: var(--gray);
  margin: 50px auto;
  display: flex;
  align-items: center;
  justify-content: end;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
}
.certificate-box{
  width: 100%;
  padding: 15px;
}
.certificate-box h5{
  font-size: 25px;
  line-height: 35px;
  color: var(--black);
  font-weight: bold;
  text-transform: uppercase;
  font-weight: 900;
  padding: 0;
  margin: 0;
}
.certificate-box p{
  font-size: 16px;
  line-height: 26px;
  color: var(--black);
  padding: 0;
  margin: 0 0 5px;
}
.certificate-box p span{
  font-weight: bold;
}
@media (min-width: 992px){    
  .notification-text{
    text-align: left;
    margin: 0;
  }      
  .certificate-box{
    width: 50%;
  }
  .certificate-box h5{
    font-size: 50px;
    line-height: 60px;
  }
  .certificate-new{
    height: 650px;
  }
}