* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(to right, #eaeaf5, #dcdcf3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 1000px;
  height: 600px;
  background: #fff;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* LEFT */
.left {
  width: 50%;
  background: #f5f6fb;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left img {
  width: 80%;
}

/* RIGHT */
.right {
  width: 50%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand {
  color: #4f46e5;
  margin-bottom: 20px;
}

h3 {
  margin-bottom: 20px;
}

.sub {
  font-size: 14px;
  margin-bottom: 20px;
  color: gray;
}

.input-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.input-group label {
  margin-bottom: 6px;
  font-size: 14px;
}

.input-group input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.input-group input:focus {
  border-color: #4f46e5;
  outline: none;
}
.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper input {
  width: 100%;
  padding-right: 45px;
}

.eye-icon {
  position: absolute;
  right: 12px;
  width: 22px;
  cursor: pointer;
}

.error {
  color: red;
  font-size: 12px;
  height: 14px;
}

.remember {
  margin-bottom: 20px;
  font-size: 14px;
}

.actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

button {
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  background: #4f46e5;
  color: white;
  cursor: pointer;
  font-size: 14px;
}

button:hover {
  background: #4338ca;
}

a {
  font-size: 14px;
  color: #4f46e5;
  text-decoration: none;
}


/* Toast */
.toast {
  position: fixed;
  top: 30px;
  right: 30px;
  background: #dff0d8;
  padding: 18px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transform: translateX(120%);
  transition: 0.4s ease;
  z-index: 9999;
}

.toast.show {
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  font-weight: 500;
  color: #2e7d32;
}

.toast-content img {
  width: 22px;
}