* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
  @import url('https://fonts.googleapis.com/css2?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&display=swap');

  body{
    font-family: 'Poppins', sans-serif;
  }

.ls-w-25 {
  width: 25%;
}
.ls-w-50 {
  width: 50%;
}
.ls-w-75 {
  width: 75%;
}

.ls-w-100 {
  width: 100%;
}
input:focus::-moz-placeholder {
  color: transparent;
}

input:focus::placeholder {
  color: transparent;
}

.ls-submit:hover {
  opacity: 0.8;
}
.ls-reset:hover {
  opacity: 0.8;
}

/* login */

.ls-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  background-image: url(../images/bg-cover.webp);
  background-size: cover;
}
.back-btn{
  position: absolute;
  top:60px;
  display: flex;
  align-items: center;
  left: 20px;
  text-decoration: none;color: #282828;
}


.back-btn:hover{
  opacity: 0.8;
}

.form-logo{
  color: #104b83;
  text-decoration: underline;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.5rem;
  position: absolute;
  top: 10px;
  left: 20px;
}
@media only screen and (max-width: 768px){
  .back-btn{display: none;}

.form-logo{text-align: center;width: 100%;left: 0;position: relative;padding-top: 10px;}
}
.ls-container {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
  width: 70%;
  background-color: rgba(255,255,255,0.9);
  padding: 1rem 2rem;
  margin-left: auto;
  margin-right: auto;
}
.ls-signup-page {
  /* margin-top: 50px; */
    background-color: rgba(255,255,255,0.9);
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0), 0 6px 20px 0 rgba(0, 0, 0, 0.1); */
  /* width: 60%; */
  padding: 0 2rem;
}


.ls-input-name,
.ls-input-pswd {
  width: 100%;
  padding: 12px 40px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.ls-form {
  position: relative;
}

.ls-form i {
  position: absolute;
  left: 14px;
  top: 38px;
  color: gray;
}

.ls-chkbox {
  margin: 5px;
}
.form-title{
  text-align: center;
  margin-bottom: 2rem;
}

.form-title h2{
  color: #104b83;
}

.ls-submit {
  background-color: #104b83;
  color: white;
  padding: 15px 30px;
  margin: 8px 0;
  margin-top: 20px;
  margin-bottom: 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.ls-sign {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.ls-sign h4 {
  color: gray;
  font-weight: 300;
}

.ls-sign a , .forgot-link{
  text-decoration: none;
  color: #104b83;
}

.forgot-link{
  float: right;
}
/* //////////Create Account//////////// */

.ls-relation {
  display: flex;
  flex-direction: column;
}

.ls-select {
  padding: 12px 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
}

.ls-gender,
.ls-marital {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.ls-input[type="text"],
.ls-input[type="file"],
.ls-input[type="number"],
.ls-input[type="email"],
.ls-input[type="password"],.ls-input[type="date"] {
  width: 100%;
  padding: 12px 10px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.ls-center {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.ls-div-flex-row {
  display: flex;
  /* flex-wrap: wrap; */
  flex-direction: row;
}
.ls-gap {
  gap: 10px;
}
.ls-flex {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.ls-file {
  width: 100%;
  padding: 9px 5px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.ls-reset {
  background-color: #ffffff;
  color: #104b83;
  padding: 15px 30px;
  margin: 8px 0;
  border: 2px solid #104b83;
  /* font-size: 1rem; */
  border-radius: 10px;
  cursor: pointer;
}

.ls-label {
  font-weight: 600;
}
.ls-main label{
  margin-top: 10px;

}
@media only screen and (max-width: 768px) {
  .ls-signup-page {
    width: 100%;
  }
  .ls-container {
    width: 95%;
    margin-top: 30px;
   padding: 1rem;
  }
  .ls-sign{
    flex-direction: column;
  }
  .ls-sign h4{
    display: block;

  }
}
@media only screen and (max-width: 500px) {
  .ls-div-flex-row {
    /* width: 100%; */
    flex-direction: column;
  }
  .ls-signup-page {
    margin-top: 20px;
    width: 90%;
  }
  
  .ls-w-50 {
    width: 100%;
  }
  .ls-gender {
    width: 100%;
  }
  .ls-marital {
    width: 100%;
  }
  .ls-flex {
    width: 100%;
  }
  .ls-form {
    width: 100%;
  }
}
