* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #CAE8EA;


}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  width: 40%;
  border-radius: 10px;
}


.container img{
  border-radius: 50%;
  width: 100%;
}

.login-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 440px;
  height: auto;
  padding: 30px;
}

.login-box img{
  border-radius: 50%;
  width: 30%;
  margin: 0 133px;

}
.login-header {
  text-align: center;
  margin: 20px 0 40px 0;
}
.login-header header {
  color: #333;
  font-size: 30px;
  font-weight: 600;
}


.login {
  font-size: 18px;
  line-height: 20px;
}
.logo img {
  margin-bottom: 15px;
  height: 40px;
}
.favorites {
  right: 5.8%;
}
.content {
  width: 180%;
}

.input-box .input-field {
  width: 100%;
  height: 60px;
  font-size: 17px;
  padding: 0 25px;
  margin-bottom: 15px;
  border-radius: 15px;
  border: rgb(210, 201, 201) 1px solid;
  box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.05);
  outline: none;
  transition: 0.3s;
}
::placeholder {
  font-weight: 500;
  color: #a9a3a3;
}
/* .input-field:focus {
  width: 105%;
} */
.forgot {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}
section {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #555;
}
#check {
  margin-right: 10px;
}
a {
  text-decoration: none;
  color: black;
}
a:hover {
  text-decoration: underline;
}
section a {
  color: #555;
}
.input-submit {
  position: relative;
}
.submit-btn {
  width: 100%;
  height: 60px;

  background: #b2ebf2;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
}
.input-submit label {
  position: absolute;
  top: 45%;
  left: 50%;
  color: white;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.submit-btn:hover {
  background-color: #222;
  transform: scale(1.05, 1);
}
.sign-up-link {
  text-align: center;
  font-size: 15px;
  margin-top: 20px;
}
.sign-up-link a {
  color: black;
  font-weight: 600;
}
/* Thêm Media Queries cho Tablet */
@media (max-width: 768px) {
  .container {
    width: 80%;
    padding: 10px;
  }
  .login-box {
    width: 100%;
    height: auto;
    padding: 20px;
  }
  .input-box .input-field {
    height: 50px;
    font-size: 16px;
    padding: 0 15px;
  }
  .submit-btn {
    height: 50px;
  }
}

/* Thêm Media Queries cho Mobile */
@media (max-width: 480px) {
  .container {
    width: 95%; /* Chiều rộng gần full màn hình */
    border-radius: 5px;
    padding: 5px;
  }
  .login-box {
    padding: 15px;
  }

  .login-header header {
    font-size: 24px; /* Giảm kích thước header */
  }
  .input-box .input-field {
    height: 45px; /* Nhỏ hơn cho điện thoại */
    font-size: 14px;
    padding: 0 10px;
  }
  .forgot {
    flex-direction: column; /* Stack nội dung Remember me và Forgot password */
    align-items: flex-start;
    gap: 10px;
  }
  .submit-btn {
    height: 45px; /* Nút nhỏ hơn */
  }
  .sign-up-link {
    font-size: 14px;
  }
}


/* Nút Thoát */
.close-btn {
  position: absolute;
  top: 10px;
  right: 31%;

  background-color: transparent;
  border: none;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.close-btn:hover {
  transform: scale(1.2);
  color: #ff0000;
}

/* Điều chỉnh khoảng cách cho login-box 
.login-box {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

*/
