@font-face {
  font-family: 'Inter';
  src: url('font/Inter-VariableFont_opsz\,wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: Inter; 
  background-color: #7EC5FF;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  width: 300px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}

.login-box h2 {
  margin-bottom: 20px;
}

.login-box input {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #e5e5e5;
  outline: none;
  font-size: 14px;
  box-sizing: border-box;
}

.btn-login {
  background: #55B2FF;
  color: white;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  font-size: 15px;
}

.btn-login:hover {
  background: #2980b9;
}

/* Divider với line 2 bên */
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 15px 0;
  color: #555;
  font-size: 14px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #aaa;
}

.divider:not(:empty)::before {
  margin-right: 10px;
}

.divider:not(:empty)::after {
  margin-left: 10px;
}

.btn-register {
  background: #0BD400;
  color: white;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
}

.btn-register:hover {
  background: #1e8449;
}

.forgot {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  text-decoration: none;
  color: #0056ff;
}

.forgot:hover {
  text-decoration: underline;
}
