/* Import font */
h1, p{
    margin: 0;
    padding: 0;
}


body {
    /* background: url(../img/login_bg_gredient.png), url(../img/login_page_bg.png) no-repeat, -webkit-linear-gradient(top, #005b96, #F6F1E9);
    background-size: auto, cover;
    background-position: none none, right bottom; */
    background-image: url(../img/login_bg_gredient.png),
                      url(../img/login_page_bg.png),
                      -webkit-linear-gradient(top, #005b96, #F6F1E9);

    background-repeat: no-repeat, no-repeat, no-repeat;

    /* sizes: first = auto (natural), second = cover, third = full cover */
    background-size: auto, 1500px, auto;

    /* positions: first = center, second = right bottom, third = center */
    background-position: 0 0, 300% 42%, 0 0;


    
    display: flex;
    justify-content: space-evenly;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    /* position: relative; */

}

.text{
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 15% 0 0px 0;
}
.text h1{
    font-size: 50px;
    padding-bottom: 15px;
    color:#fff;
}

.text p{
    font-size: 30px;
    color: #fff;
    font-weight: 600;
}

.bg_img{
position: absolute;
    margin: -20% 45% 0% 0%;
    opacity: 0.2;
    width: 1770px;
    transform: rotate(347deg);
}

.login-container {
  width: 100%;
  max-width: 350px;
  height: 67vh;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  margin-top: 9%;
  box-shadow: 1px 1px 7px 2px #373434;
}

h2 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.form_div{
    width: 90%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-self: center;
}

.input-group {
  display: flex;
  align-items: center;
  background: #f2f2f2;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 4px;
}

.input-group i {
  margin-right: 10px;
  color: #999;
  font-size: 16px;
}

.input-group input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  font-size: 14px;
}

.remember {
  text-align: left;
  margin-bottom: 20px;
  font-size: 14px;
  color: #555;
}

.remember input {
  margin-right: 5px;
}

.btn-login {
  width: 100%;
  background: #006bbc;
  border: none;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 15px;
  transition: 0.3s;
}

.btn-login:hover {
  background: #04357e;
}

.or {
  font-size: 14px;
  margin-bottom: 15px;
  color: #555;
}

.social-login {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 10px;
}

.social-login button {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-login button i {
  margin-right: 8px;
}

.facebook {
  /* color: #3b5998; */
  background: #3b5998 !important;
  color: #fff;
}

.facebook:hover {
  background: #0866ff !important;
  color: #fff;
}

.google {
  color: #fff ;
  background: #db4437 !important;
}

.google:hover {
  background: #c5221f !important;
  color: #fff;
}

.signup {
  font-size: 13px;
  color: #555;
}

.signup a {
  color: #05286e;
  text-decoration: none;
  font-weight: 600;
}











/* MOBILE (max-width: 480px) */
@media (max-width: 480px) {
  body {
    padding: 10px;
    background-size: auto, cover, auto;
    background-position: 0 0, center bottom, 0 0;
    flex-direction: column;
    justify-content: center;
    overflow: auto;
  }

  .text {
    width: 100%;
    padding: 5% 0;
    text-align: center;
  }

  .text h1 {
    font-size: 32px;
  }

  .text p {
    font-size: 18px;
  }

  .login-container {
    width: 100%;
    margin-top: 30px;
    height: auto;
    box-shadow: none;
  }

  .social-login {
    flex-direction: column;
    gap: 8px;
  }

  .social-login button {
    margin: 0;
    width: 100%;
  }
}

/* TABLET (max-width: 768px) */
@media (max-width: 768px) {
  body {
    flex-direction: column;
    /* height: 100vh; */
    align-items: center;
    justify-content: center;
    /* background-image: none; */
    background-size: auto, 0px, auto;
    background-position: 0 0, center 100%, 0 0;
    overflow: hidden;
  }

  .text {
    width: 100%;
    height: 80px;
    text-align: center;
    padding: 8% 0;
  }

  .login-container {
    margin-top: 0;
    height: auto;
            padding-bottom: 10%;
  }
}














/* 🔹 Responsive for mobile */
@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  .login-container {
    max-width: 100%;
  }

  .input-group {
    padding: 10px;
  }

  .btn-login {
    padding: 14px;
    font-size: 15px;
  }

  .social-login {
    flex-direction: column;
  }

  .social-login button {
    margin: 5px 0;
  }
}