@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&family=Space+Grotesk:wght@300..700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Space Grotesk", sans-serif;
}
body {
  overflow-x: hidden;
  background-color: #f8fbff;
  display: flex;
  justify-content: center;
}
.login-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100vw;
  height: 100dvh;
  overflow-x: hidden;
  max-width: 1400px;
}

.login-box {
  display: flex;
  width: 100%;
}

.login-content {
  padding: 40px;
  width: 50%;
}
.logo {
  padding: 0 40px;
  height: 100px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  vertical-align: middle;
}

h3 {
  color: #083A5E;
  font-size: 35px;
  font-weight: 700;
}

p {
  color: #475569;
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
}
.login-content form{
    margin: 35px 0;
}
.login-content .input-group:nth-child(2) {
  margin: 25px 0;
}

.login-content .input-group input {
  width: 100%;
  padding: 14px 10px;
  border: 1px solid #E6E5FF;
  border-radius: 5px;
  font-size: 16px;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.options .remember-me {
  display: flex;
  align-items: center;
}

.options .remember-me input {
  margin-right: 5px;
}

.options .forgot-password {
  color: #1179C4;
  font-weight: 500;
  text-decoration: none;
}

.options .forgot-password:hover {
  text-decoration: underline;
}

.login-btn {
  background: linear-gradient(90deg, #5573b5 0%, #b7e1ff 100%);
  color: #fff;
  border: none;
  padding: 15px;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}

.login-btn:hover {
  background-color: #357abd;
}

.signup-text {
  margin-top: 20px;
  text-align: center;
}

.signup-text a {
  color: #1179C4;
  text-decoration: none;
}

.signup-text a:hover {
  text-decoration: underline;
}

.social-login {
  text-align: center;
  margin-top: 20px;
}

.social-login p {
    color: #475569;
    font-size: 14px;
    font-weight: 400;
}
.social-buttons {
  display: flex;
  justify-content: space-between;
}

.social-buttons button {
  width: 48%;
  padding: 10px;
  background-color: transparent;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  color: #000000;
  border: 1px solid #475569;
}
.social-buttons button img {
  height: 25px;
  width: 25px;
}
.hr-lines {
  position: relative;
  max-width: 500px;
  margin: 20px auto;
  text-align: center;
}

.hr-lines:before {
  content: " ";
  height: 1px;
  width: 35%;
  background: #475569;;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
}

.hr-lines:after {
  content: " ";
  height: 1px;
  width: 35%;
  background: #475569;;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
}
.login-image {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
}
.login-image-inner {
  width: 90%;
  height: -webkit-fill-available;
  background: linear-gradient(180deg, #e3f3ff 0%, #f6f6f6 100%);
  border-radius: 15px;
  padding: 50px 50px;
  text-align: center;
}

.login-image img {
  max-width: 100%;
}

/*sign up css*/
.signup-box {
    display: flex;
    width: 100%;
}
.signup-content {
    padding: 40px;
    width: 50%;
}
.signup-content  .input-group{
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.signup-content  .input-group input {
    width: 48%;
    padding: 14px 10px;
    border: 1px solid #E6E5FF;
    border-radius: 5px;
    font-size: 16px;
}

.options .agree {
    display: flex;
    align-items: center;
}

.options .agree input {
    margin-right: 5px;
}
.options .agree label {
    font-weight: 500;
}
.options .agree label span{
    color:#1179C4;
}