* {
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  margin: 0;
  background: #f5f7f8;
  color: #111;
}

/* HEADER */
.header {
  height: 56px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.brand-logo {
  height: 28px;
}

/* MAIN LAYOUT */
.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  gap: 64px;
  align-items: center;
}

/* LEFT ILLUSTRATION */
.left {
  flex: 1;
}

.desk {
  position: relative;
  width: 420px;
  margin: auto;
}

.monitor {
  width: 260px;
  height: 180px;
  border: 3px solid #222;
  border-radius: 6px;
  background: #00a4a6;
  margin: 0 auto;
  position: relative;
}

.monitor::after {
  content: "";
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 60px;
  left: 102px;
}

.stand {
  width: 80px;
  height: 10px;
  background: #222;
  margin: 10px auto;
}

.base {
  width: 120px;
  height: 8px;
  background: #222;
  margin: auto;
}

.phone {
  width: 44px;
  height: 86px;
  border: 3px solid #222;
  border-radius: 6px;
  background: #00a4a6;
  position: absolute;
  right: 0;
  bottom: 0;
}

/* CARD */
.right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.card {
  width: 360px;
  background: #fff;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px #e5e5e5;
}

.card h1 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 24px;
}

/* FORM */
.form-group {
  margin-bottom: 18px;
}

label {
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
}

.required {
  color: #d83b01;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 9px 10px;
  font-size: 14px;
  border: 1px solid #666;
}

.password-wrap {
  position: relative;
}

.show {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #0067b8;
  cursor: pointer;
}

/* CHECKBOX */
.checkbox {
  display: flex;
  align-items: center;
  font-size: 13px;
  margin-bottom: 20px;
}

.checkbox input {
  margin-right: 8px;
}

/* BUTTONS */
button.primary {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
}

button.primary:hover {
  opacity: 0.9;
}

button.outline {
  width: 100%;
  margin-top: 8px;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  padding: 9px;
  font-size: 14px;
  cursor: pointer;
}

/* LINKS */
.links {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
}

.links a {
  color: #0067b8;
  text-decoration: none;
}

.links.small {
  margin-bottom: 8px;
}

/* FOOTER */
.footer {
  text-align: center;
  font-size: 12px;
  color: #666;
  padding: 24px 0;
}

.image-only {
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}