:root {
  --white: #fff;
  --limesoap: rgb(123, 237, 159);
  --ufogreen: rgb(46, 213, 115);
  --middleblue: rgba(126, 214, 223, 0.6);
  --greenlandgreen: rgb(34, 166, 179);
  --waterfall: rgb(56, 173, 169);
  --azraqblue: rgb(74, 105, 189);
  --anti-flash-white: rgba(241, 242, 246, 0.6);
  --gray: #888;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  background: url(background.jpg);
  background-position: center;
  background-size: cover;
  /* background-repeat: no-repeat; */
  width: 100%;
  height: 100vh;
  font-family: poppins;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: var(--middleblue);
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.title p {
  font-weight: bold;
  margin-left: 30px;
  font-size: large;
  color: var(--white);
  display: inline;
}

#navber ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

#navber li {
  display: inline-block;
  align-self: center;
}
#navber li a {
  display: block;
  text-decoration: none;
  color: var(--white);
  padding: 12px 20px;
  transition: 0.3s;
}
#navber li a:hover {
  background-color: var(--greenlandgreen);
  border-radius: 5px;
}

.header-login-button {
  padding: 12px;
  height: 48px;
  margin-right: 40px;
  background-color: var(--waterfall);
  cursor: pointer;
  color: var(--white);
  font-weight: 600;
  font-size: medium;
  border: 0;
  border-radius: 50%;
  transition: 0.3s;
}
.header-login-button:hover {
  background-color: var(--azraqblue);
}
.container {
  background: var(--anti-flash-white);
  width: 380px;
  /* height: 470px; */
  border: 3px solid var(--white);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.center_div {
  text-align: center;
}
.signin_caption {
  font-size: small;
}
.icone_container {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.ibg {
  background-color: var(--white);
  padding: 13px;
  border-radius: 50%;
  cursor: pointer;
}
.hrline {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--gray);
}

.hrline p {
  padding: 5px;
}

.hrline::before,
.hrline::after {
  content: "";
  flex-grow: 1;
  background: #ccc;
  height: 1px;
}
.login_form {
  font-size: small;
  margin: 0;
  width: 100%;
}
.login_form label {
  text-align: left;
  width: 100%;
}
.login_form .input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--gray);
  border-radius: 5px;
}
.remember {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
}
.forgot {
  color: black;
  font-weight: 500;
}
.signin_button {
  width: 100%;
  color: var(--white);
  background-color: black;
  display: block;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
}
.last {
  color: var(--gray);
  text-align: center;
  margin: -5px;
}
.last a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}
.welcome_text {
  font-weight: 500;
  line-height: 0.6;
  margin: 0;
}
.signin_caption {
  color: var(--gray);
}

@media (max-width: 600px) {
  .login-card {
    padding: 30px 20px; 
    width: 95%; 
  }

  .welcome-heading {
    font-size: 1.8rem;
  }

  .signin-caption-text,
  .app-title,
  .form-title,
  .input-group label,
  .remember-forgot,
  .register-link {
    font-size: 0.85rem; 
  }

  .input-field {
    padding: 10px 12px;
    padding-right: 40px; 
    font-size: 0.9rem;
  }

  .input-icon {
    font-size: 1rem;
    transform: translateY(calc(-50% + 12px)); 
  }

  .login-button {
    font-size: 1rem; 
    padding: 12px;
  }

  .header {
    padding: 10px 15px;
  }

  .title p {
    font-size: medium;
  }

  #navber {
    display: none; 
  }

  .header-login-button {
    margin-right: 15px; 
  }
}
