/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: -webkit-linear-gradient(top, rgb(33, 7, 21) 0%, rgb(15, 8, 18) 50%, rgb(15, 20, 20) 100%);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}

/* Header */
.header {
  width: 100%;
  height: 94px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0 15px;
    border-bottom: none;
  }
}

.header-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1176px;
  margin: 0 auto;
  margin-bottom: 23px;
  padding-top: 23px;
}
@media screen and (max-width: 1200px) {
  .header-container {
    justify-content: space-between;
  }
}

.logo {
  display: block;
}
.logo img {
  height: 52px;
}
@media screen and (max-width: 1000px) {
  .logo img {
    height: 45px;
  }
}

.nav {
  display: flex;
  align-items: center;
  margin-right: 48px;
  margin-left: 292px;
}
@media screen and (max-width: 1200px) {
  .nav {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .nav {
    display: none;
  }
}
.nav-item {
  padding: 0 8px;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}
.nav-item:hover {
  color: rgb(99, 18, 132);
}

.login-btn {
  color: rgb(235, 80, 165);
  font-weight: 700;
}

.divider {
  width: 1px;
  height: 20px;
  background-color: #dedede;
  margin: 0 10px;
}

.menu-toggle {
  cursor: pointer;
  display: none;
}
.menu-toggle img {
  height: 30px;
}
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

/* Main Content */
.main-content {
  padding: 62px 20px 40px;
  max-width: 834px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .main-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.verify-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 88px;
  border: 1px solid rgb(107, 107, 107);
  max-width: 520px;
  margin: 0 auto;
  margin-bottom: 35px;
  height: 62px;
}
.verify-header-text {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 768px) {
  .verify-header-text {
    font-size: 26px;
  }
}

.lock-icon {
  margin-top: 6px;
  margin-right: 48px;
}
.lock-icon img {
  height: 40px;
}

/* Document Section */
.document-container {
  border-top: 1px dotted rgba(60, 240, 250, 0.31);
  border-bottom: 1px dotted rgba(60, 240, 250, 0.32);
  padding: 24px 84px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .document-container {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
  }
}
.document-image-container {
  min-height: 157px;
  min-width: 182px;
  max-height: 157px;
  max-width: 182px;
  margin-right: 48px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .document-image-container {
    margin-right: 0;
    max-width: 100%;
    min-width: 100%;
    max-height: 100%;
    min-height: 100%;
    width: 100%;
  }
}
.document-image {
  width: 100%;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.document-details {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .document-details {
    width: 100%;
  }
}
.document-id {
  font-size: 20px;
  font-weight: 700;
  color: rgb(235, 80, 165);
  margin-bottom: 2px;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .document-id {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .document-id {
    font-size: 14px;
  }
}
.document-status {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  color: #3ff1fa;
  margin-bottom: 4px;
}
@media screen and (max-width: 1000px) {
  .document-status {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .document-status {
    font-size: 24px;
  }
}
.document-date {
  font-size: 14px;
  color: #8f8f8f;
  margin-bottom: 6px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .document-date {
    font-size: 12px;
  }
}

.highlight-box {
  position: absolute;
  width: 58px;
  height: 45px;
  border: 2px solid white;
  border-radius: 2px;
  bottom: 30px;
  left: 68px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .highlight-box {
    left: 50%;
    transform: translateX(-50%);
    bottom: 32%;
  }
}

.instruction {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  color: #3ff1fa;
  text-align: center;
  margin: 10px 0 32px;
  font-weight: 400;
}

/* Gallery */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 10px;
  margin-top: 20px;
  max-width: 664px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  cursor: pointer;
  aspect-ratio: 2/1.1;
  border-radius: 4px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -o-object-position: center;
     object-position: center;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.close-lightbox {
  color: white;
  font-size: 26px;
  line-height: 26px;
  font-weight: 100;
  cursor: pointer;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  margin-bottom: 20px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 999;
  display: none;
  padding: 20px;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu-content {
  width: 100%;
  max-width: 483px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  margin-top: 90px;
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  height: 80px;
  padding: 0 20px;
}
.mobile-menu-header .logo {
  height: 57px;
  width: 57px;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile-menu-item {
  width: 100%;
  max-width: 321px;
  padding: 13px 0;
  border-top: 1px solid rgba(222, 222, 222, 0.34);
  color: white;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 400;
  text-decoration: none;
}
.mobile-menu-item:first-of-type {
  border-top: none;
}

.close-menu {
  font-size: 24px;
  color: rgb(235, 80, 165);
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgb(235, 80, 165);
  margin-top: 10px;
}

.mobile-login-btn {
  background: -webkit-linear-gradient(left, rgb(235, 80, 165) 0%, rgb(170, 102, 204) 100%);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 50px;
  width: 229px;
  height: 36px;
  margin: 0 auto;
  margin-top: 20px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */