* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif; 
}
.la_pg_top_header{
  position: fixed;
  top: 0; 
  left: 0; 
  right: 0; 
  height: 130px;
  /* background-color: #181928; */
  display: flex;
  flex-direction: row;
  justify-content:space-between;
  align-items: center;
  z-index: 1000;
  padding: 0px 50px;
}

.la_pg_top_header_img img{
  height: 120px;
  width: auto;
  filter: drop-shadow(0 0 3px rgba(0,0,0,0.6));
}
@media (max-width: 600px) { 
  .btn_text1 { 
    display: none; 
  } 
  .la_pg_top_header{  
    height: 80px;
    padding: 0px 30px;
    background-color: #181928;
    opacity: 0.8;
  }
  .la_pg_top_header_img img{
    height: 70px;  
  }
  
}

.la_pg_top_sec{
  position: relative;
}
.la_pg_top_sec_first{ 
  display: grid; 
  grid-template-columns: 1fr 1fr;
  
} 
.la_pg_top_sec_part{
  height: 100vh;
  position: relative;
}
@media (max-width: 600px) { 
  .la_pg_top_sec_part{
    height: 75vh;
  }
}
.la_pg_top_sec_part img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  /* filter: blur(1px); */
  opacity: 0.7;
}
.la_pg_overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.la_pg_gradient_overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, transparent 30%, transparent 70%, rgba(0,0,0,1) 100%);
}
.la_pg_message{
  position: absolute;
  top: 50%;
  left: 50%; 
  transform: translate(-50%, -50%);
}
.la_pg_message h1 { 
  font-size: 30px;
  color: rgb(248, 250, 252);
  font-family: "Playfair Display", Georgia, serif;
  text-align: center;
} 

.highlight{
  color: #CDA747;
  font-family: "Playfair Display", Georgia, serif;
}


@media (min-width: 640px) { 
  .la_pg_message h1 { 
    font-size: 36px; 
  } 
} 
@media (min-width: 767px) { 
  .la_pg_message h1 { 
    font-size: 48px; 
  } 
} 
@media (min-width: 1024px) { 
  .la_pg_message h1 { 
    font-size: 60px; 
  } 
}
.la_pg_message p{
  color: rgb(248, 250, 252);
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-align: center;
}


.la_pg_message_button{
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

@media (max-width: 700px) { 
  .la_pg_message_button{
    flex-direction: column;  
  }
}

.btn_join, 
.btn_google { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  padding: 14px 20px; 
  border-radius: 10px; 
  gap: 10px;
  font-size: 16px; 
  line-height: 1.5;
  min-height: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.2s ease;
}
@media (max-width: 400px) { 
  .btn_join, 
  .btn_google { 
    font-size: 14px; 
  } 
}
.btn_join_bg_color{
  background: linear-gradient(to right,#91752D, #E2C270);
  color: black;
  font-weight: 600;
}
.la_pg_message_button a.btn_join { 
  text-decoration: none; 
  color: inherit;
}
.btn_join:hover{
  opacity: 0.9;  
}
.btn_google_bg_color{
  background-color: #17223C;
  border: none;
  font-weight: 600;
  color: rgb(248, 250, 252);
}
.google_logo_padding_10{
  padding: 8px 20px;
}
.google_logo_padding_20{
  padding: 14px 20px;
}
.google_logo {
  width: 1.25rem;
  height: 1.25rem;
}
.btn_google:hover{
  background-color: #262f49;
}
/*#######################*/
.la_pg_form{
  background-color: #0F1729;
  border: 1px solid #0F1729;
}
.la_pg_form_section{
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 80%;
  margin: 50px auto;  
  background-color: #121C32;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.la_pg_form_sec{
  width: 100%;
  position: relative;
}
.la_pg_form_sec_img{
  width: 100%;
  height: 100%;
}
.la_pg_form_sec_img img{
  width: 90%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px; 
}
.la_pg_form_sec_text{
  position: absolute;
  bottom: 10px;
  left: 20px;
}
@media (max-width: 700px) { 
  .la_pg_form_section { 
    grid-template-columns: 1fr; 
    width: 90%;
    margin: 30px auto; 
    border-radius: 20px;
  }
  .la_pg_form_sec img{
    width: 100%;  
    border-radius: 20px; 
  }
}
.la_pg_form_sec_form{
  width: 100%;
  margin: 30px 20px; 
}
.white,
.la_pg_form_sec_text p{
  color: #F8FAFC;
}
.la_pg_form_sec_text p{
  font-size: 18px;
  font-weight: 600;
}
.light_white{
  color: rgb(148, 163, 184);
}
form.space-y-5 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 500px;
  margin: 0 auto;
}
form label {
  display: block;
  font-size:14px;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.375rem;
}
.text-gold{
  color:#C9A240;
  font-size:16px;
}
form input {
  width: 80%;
  background-color: #182543;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}
form input:focus {
  outline: none;
  border-color: #C9A240;
  box-shadow: 0 0 0 2px rgba(228, 186, 77, 0.8);
}
 
form input::placeholder {
  color: rgb(148, 163, 184);
}
form button{
  width: 80%;
  border: none;
}
@media (max-width: 768px) { 
  form input {
    width: 90%;
    
  }
  form button{
  width: 90%;
}
}
/*#############################*/
.la_pg_3_sec{
  background-color: #0F1729;
  border: 1px solid #0F1729;
}
.la_pg_3_sec_top{
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) { 
  .la_pg_3_sec_top { 
    grid-template-columns: 1fr; /* single column */
    width: 95%; /* optional: make it wider on mobile */ 
  } 
}
.la_pg_3_sec_ind{
  border: 1px solid #2D3035;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #121C32; 
  padding: 8px 0px 3px 0px;
  transition: border-color 0.6s ease;
}
.la_pg_3_sec_ind:hover{
  border: none;
  box-shadow: 0 0 8px rgba(227, 207, 98, 0.6);
}
.la_pg_3_sec_ind_svg{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #242934;
  margin-bottom: 1.5rem;
}
.max_width_join{
  max-width: 200px;
}
.text-center{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0px;
}
.text-center .btn_join { 
  text-decoration: none; 
}
.text-center .btn_join:hover { 
  color: black; 
}
/*######################*/
.lg_pg_45day_section{
  background-color: #0F1729;
  padding: 20px 0px;
  border: 1px solid red;
}
.lg_pg_45day_section_title,
.lg_pg_45day_section_desc{
  text-align: center;  
}
.lg_pg_45day_section_desc{
  margin-bottom: 50px;
}
.lg_pg_45day_sec{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 80%;
  margin: 0 auto;
}
.lg_pg_45day_sec::after {
  content: "";
  position: absolute;
  top: 50px;
  left: calc(100px);
  right: calc(100px);
  height: 2px;
  background: gray;
  box-shadow: 0 0 8px rgba(201, 162, 64, 0.6); 
}
.lg_pg_45day_sec_ind{
  flex: 1; 
  display: flex; 
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  height: auto;
}
.lg_pg_45day_sec_ind_svg{
  border: 2px solid gray;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background-color: #0F1729;
  transition: border-color 0.3s ease, 
  transform 0.3s ease; 
} 
.lg_pg_45day_sec_ind_svg:hover { 
  border-color: #C9A240;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(201, 162, 64, 0.6);
}
.lg_pg_45day_sec_ind h3 { 
  font-size: clamp(1rem, 2vw, 1.25rem); 
  font-weight: 600; 
  margin: 0; 
  color: #fff;
} 
.lg_pg_45day_sec_ind p { 
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  margin: 0; 
  color: #ccc;
  margin: 10px 0px; 
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; 
}

@media (max-width: 768px) {
  .lg_pg_45day_section_title{
    font-size: 20px; 
  } 
  .lg_pg_45day_section_desc{
    font-size: 10px; 
  } 
  .lg_pg_45day_sec { 
    flex-direction: column; 
    align-items:flex-start;
  } 
  .lg_pg_45day_sec::after { 
    display: none;  
  } 

  .lg_pg_45day_sec_ind{
    flex-direction: row;
    align-items:flex-start;
    min-height: 100px;
    gap: 25px;
  } 
  .lg_pg_45day_sec_ind_svg{
     width: 50px;
     height: 50px;
    }
   .lg_pg_45day_sec_ind_svg::after{
    content: "";
    position: absolute;
    top: 100%; 
    left: 50%;
    width: 2px;
    height: 30px;
    background: gray;
    box-shadow: 0 0 8px rgba(201, 162, 64, 0.6);
  }
  .lg_pg_45day_sec_ind:last-child .lg_pg_45day_sec_ind_svg::after { 
  display: none;
}
  .lg_pg_45day_sec_ind_svg::after:hover { 
    border-color: #C9A240;
    transform: scale(1.05);
  }
  .lg_pg_45day_sec_desc{
    text-align: left;
    margin-top: 10px;
  }
  .lg_pg_45day_sec_ind p {
    margin: 10px 0px;
  }
}
/*##########################*/
.lg_pg_footer_section{
  background-color: #182543;
  padding: 40px 0px;
}
.lg_pg_footer_sec{
  text-align: center;
  width: 50%;
  margin: 0 auto;
}
.lg_pg_footer_sec_title{
 font-size: 36px;
 font-size: clamp(30px, 1.5vw, 36px);
 font-weight: 700;
 line-height: 40px;
}
.lg_pg_footer_sec_desc{
 font-size: 36px;
 font-size: clamp(14px, 1.5vw, 20px);
 font-weight: 400;
 line-height: 20px;
}
.lg_pg_footer_sec_name{
  color:#7F6D41;
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 400;
}
.error-msg { 
  font-size: 0.9rem; 
  color: #ff4d4d; 
  margin-top: 4px; 
}
/* Hidden by default */
.popup {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  left: 0; 
  top: 0; 
  width: 100%; 
  height: 100%; 
  background-color: rgba(0,0,0,0.5);
}

.popup-content {
  background: #fff;
  color: #333;
  margin: 15% auto; 
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.popup-close {
  float: right;
  font-size: 20px;
  cursor: pointer;
}

.la_pg_form_sec_form_tick{
  display:flex; 
  flex-direction: column;
  margin-top: -15px;
}
.la_pg_form_sec_form_tick_ind{
  display: flex;
  align-items: center;
  margin: 0;
}
.la_pg_form_sec_form_tick_ind input{
  width: 10px;
}
.extra_space_left{
  margin-left: 5px;
}
