* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Malgun Gothic", sans-serif;
}
body {
  background: #eef3fb;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.login-wrap {
  width: 1100px;
  height: 620px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.left-panel {
  flex: 1;
  background: linear-gradient(135deg, #4c6ef5, #304ffe);
}
.overlay {
  padding: 70px 50px;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.overlay h1 {
  font-size: 46px;
}
.overlay h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 10px 0 20px;
}
.icons {
  margin-top: auto;
  font-size: 80px;
  display: flex;
  gap: 40px;
}
.right-panel {
  width: 430px;
  padding: 70px 40px;
  display: flex;
  flex-direction: column;
}
.logo {
  font-size: 34px;
  font-weight: 700;
  color: #2f5fd0;
  margin-bottom: 45px;
  display: flex;
  gap: 10px;
  align-items: center;
}
input[type="text"],
input[type="password"] {
  height: 50px;
  border: 1px solid #d8dfe8;
  border-radius: 8px;
  padding: 0 15px;
  margin-bottom: 18px;
  font-size: 15px;
}
.remember {
  margin: 6px 0 24px;
  font-size: 14px;
  color: #555;
}
.login-btn {
  height: 52px;
  border: none;
  border-radius: 8px;
  background: #4c6ef5;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
}
.login-btn:hover {
  background: #3558e6;
}
.links {
  margin-top: 35px;
  text-align: center;
}
.links a {
  text-decoration: none;
  color: #666;
}
.links span {
  margin: 0 15px;
  color: #ccc;
}
