* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #e8eff8;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-card {
  background: #f6faff;
  width: 340px;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.logo {
  text-align: center;
  font-size: 45px;
  color: #3d4ea8;
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  font-size: 13px;
  margin-bottom: 5px;
  display: block;
}

.input-box {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
}

.input-box i {
  margin-right: 8px;
  color: #888;
}

.input-box input {
  border: none;
  outline: none;
  width: 100%;
}

.login-btn {
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  border: none;
  background: #3d4ea8;
  color: #fff;
  cursor: pointer;
}

.links {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.links a {
  font-size: 13px;
  text-decoration: none;
}
