
@import
url('https://fonts.googleapis.com/css2?family=Montserrat:wght@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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
  font-family: 'DM Sans', 'Roboto', sans-serif;
  /* font-family: 'Montserrat', 'Roboto', sans-serif; */
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
  /* font-size: 14px; */
  line-height: 1.5; /* Adjust for readability */
  -webkit-font-smoothing: antialiased; /* Enhances font rendering in some browsers */
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  
  }
.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  



body{
  background: var(--defualtBg) !important;
  color:var(--bgtext) ;
}




:root{
    --defualtBg:#FAFBFF;
    --textblue:#09417A;
    --textblue2: #4A57D9;
    --textbluelight:#44d5f5;
    --coslight: #EDEDFB;
    --successcolor: #0DE33C;
    --shadow:0 4px 8px 0 rgba(0, 0, 0, 0.096), 0 6px 20px 0 rgba(0, 0, 0, 0.054);
    --bgtext:#000;
    --nav: #ffffff4a;
}

/* Dark mode styles */
.dark-mode{
    --defualtBg:#000e1c;
    --textblue:#44d5f5;
    --bgtext:#fff;
    --textblue2: #4A57D9;
    --textbluelight:#44d5f5;
    --coslight: #09417A;
    --successcolor: #0DE33C;
    --shadow:0 4px 8px 0 rgba(0, 0, 0, 0.096), 0 6px 20px 0 rgba(0, 0, 0, 0.054);
    --nav: #ffffff4a;
}


.form-container{
    margin: 0 auto;
    margin-top: 6%;
    width: 400px;
    top:45%;
    /* background:var(--textbluelight) ; */
    /* box-shadow: var(--shadow); */
    border-radius: 10px;
    padding: 10px;
}

.form-container h3{
    text-align: center;
    text-transform: capitalize;
}

.smart-form input{
 outline: 1px solid #aaa;
 border-radius: 10px;
 margin-top: 7px;
 text-transform: capitalize;
background: transparent;
margin-bottom: 7px;
}
.Gsbtn{
    width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.form-container button{
    margin: 0 auto;
    display: block;
}
.textline{
    text-align: center;
    width: 100%;
    margin: 0 auto;
    text-transform: capitalize;
    position: relative;
    align-items: center;
    justify-content: center;
}
.textline::after{
    content:'';
    width: 50px;
    height: 1px;
    background: var(--textblue);
    position: absolute;
    top:10px;
    right: 0;
    border-radius: 10px;

}
.textline::before{
    content:'';
    width: 50px;
    height: 1px;
    background: var(--textblue);
    position: absolute;
    top:10px;
    border-radius: 10px;
left: 0px;
}
 
.btn-smartfull{
    background: var(--textblue) !important;
    color:var(--defualtBg) !important;
    text-transform: capitalize !important;
    border-radius: 5px;
    padding-top:5px;
    padding-bottom:5px;
    width: 150px;
    transition: .2s;

}
.btn-smartfull:hover, .btn-smartlight:hover{
    transform: scale(1.1);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
h1, h2, h3, h4, h5 {
    color: var(--textblue);
    font-family: poppins;
    text-transform: none;
}
.bg-smartblue{
background: var(--textblue);
color: var(--defualtBg) !important;
}
.bg-smartbluelight{
background: var(--coslight);
color: var(--textblue) !important;
}
.bg-smartblue:hover{
    color: var(--defualtBg) !important;
}
.text-smartlight{
    color:var(--defualtBg) !important;
}
.text-smartlight-blue{
    color:var(--textbluelight) !important;
}
.text-smartblue{
    color: var(--textblue) !important;
}

@media (max-width:600px){

    .form-container{
width: 100%;
margin-top: 25%;
padding: 10px;
    }
}

/* Hide password strength meter and text initially */
.password-strength-meter {
    display: none;
    width: 100%;
    height: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  
  .password-strength-text {
    display: none;
    font-size: 0.875rem;
    margin-bottom: 10px;
    color: red;
  }
  
  /* Red outline for inputs with errors */
  .error-outline {
    border: 1px solid red;
  }
  
  /* Error message styling */
  .error-message {
    color: red;
    font-size: 0.875rem;
    margin-top: 5px;
  }
  

 