:root {
    --secondary-color-50: #f7f3f3;
}

* {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

 
html, body {
    height: 100%;
}




body {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #0f1932;
    padding: 0;
    margin: 0;
    
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    gap: 50px;
    
    flex-direction: column;
}

.page-wrapper {
    flex: 1;
    display: flex;
    gap: 20px;
    box-sizing: border-box;
    padding-bottom: 10px;
}


footer {
   padding: 40px 25px;
    color: #fff;
     
     
}

.create-btn {
    border-radius: 50px;
    display: block;
    color: #FFF;
    font-weight: 500;
    margin-top: 10px;
}

.pb-200 {
    padding-bottom: 200px;
}
.pb-100 {
    padding-bottom: 100px;
}
.pb-50 {
    padding-bottom: 50px;
}
.main-img-div, .form-area-div {
    flex: 50%;
}
.main-img-div {
    overflow: hidden;
}
.form-div {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    border: none;
    color: #1A8DCE;
}



.form-label {
    margin-bottom: .5rem;
    color: #1A8DCE;
}


.smaller-text, .copy {
    font-size: .7rem;
    color: #1A8DCE;
}


 a {
    font-size: .7rem;
    color: #1A8DCE;
}

.small-text {
    font-size: .8rem;
    color: #1A8DCE;
}

.hero-img_ {
    height: 85vh;
    object-fit: cover;
}
.forgot-password-div {
    margin-top: 0;
    width: auto;
    text-align: right;
}
.forgot-password {
    color: #000;
    font-weight: bold;
    margin-top: 0;
}
.mb-x {
    margin-bottom: 50px;
    
}

 
 
 

 



.top-nav {
  background-color: #0f1932;
  padding: 15px 50px;
  width: 100%;
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: auto;
}

.logo-text {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

.right-top-nav.home-link-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
  align-items: center;
}

.btn-color {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.btn-color:hover {
  color: #FFFFFF;
}










@media screen and (max-height: 568px) and (min-width: 1192px) {
    body {
        display: flex;
        align-items: flex-start;
    }
}

@media screen and (max-width: 1192px) {
    body {
        padding-left: 200px;
        padding-right: 200px;
        padding-top: 100px;
        padding-bottom: 100px;
        height: auto;
        width: 100vw;
        display: block;
    }
    .main-img-div {
        display: none;
    }
    .form-area-div {
        flex: 100%;
        width: 100%;
        overflow-x: hidden;
    }
    .form-div {
        padding: 100px;
    }
     
}

@media screen and (max-width: 992px) {
    body {
        padding-left: 100px;
        padding-right: 100px;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    .form-div {
        padding: 50px;
    }
}

@media screen and (max-width: 768px) {
    body {
        padding-left: 25px;
        padding-right: 25px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .form-div {
        padding: 25px;
    }
    .mb-x {
        margin-bottom: 20px;
    }
}