.loginsection {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(228, 229, 247);
    width: 100%;
    padding: 0;
    height: 100%;
    min-height: 100vh;
}
.loginsection .container{
  padding-top: 30px;
  padding-bottom: 30px;
}
.social-login img {
  width: 24px;
}
.logincard {
  width: 100%;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  background-color: #ffff;
  font-family: 'Montserrat Alternates', sans-serif;
  padding: 1.8rem;
  box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.1);
}
.logincard.signupcard {
    max-width: 600px;
}
.title {
  text-align: center;
  font-weight: bold;
  margin: 0;
}
.subtitle {
  text-align: center;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.btn-text {
  margin: 0;
}

.social-login {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}

.socialloginbtn {
  background: #fff;
  border: solid 2px rgb(245 239 239);
  border-radius: 8px;
  font-weight: bold;
  display: flex;
  padding: 10px 10px;
  flex: auto;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

.or {
  text-align: center;
  font-weight: bold;
  border-bottom: 2px solid rgb(245 239 239);
  line-height: 0.1em;
  margin: 25px 0;
}
.or span {
  background: #fff;
  padding: 0 10px;
}

.email-login {
  display: flex;
  flex-direction: column;
}
.email-login label {
  color: #444444;
}

.form-control{
  padding: 10px 20px;
  /*margin-top: 8px;*/
  margin-bottom: 0px;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.cta-btn {
    cursor: pointer;
    background-color: #74e5d1;
    color: #202020;
    padding: 8px 20px;
    margin-bottom: 10px;
    width: 100%;
    border-radius: 10px;
    border: none;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: 0.5s;
    letter-spacing: 1px;
}
.cta-btn:hover{
    background-color: #202020;
    color: #74e5d1;
}
.forget-pass {
  text-align: center;
  display: block;
}