/* RESET */
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #f9f9f9;
}

/* HEADER */
.layout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.logo {
  max-width: 110px;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-links a {
  text-decoration: none;
  color: #0e71eb;
  font-size: 14px;
}

/* MAIN LAYOUT */
.main-layout {
  display: flex;
  height: calc(100vh - 80px);
}

/* LEFT */
.left-panel {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.illustration {
  max-width: 80%;
}

/* RIGHT */
.right-panel {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* FORM */
.login-form {
  width: 100%;
  max-width: 400px;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.login-form h2 {
  margin-bottom: 24px;
}

label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* CHECKBOX INLINE */
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin: 16px 0;
}

/* BUTTON */
button {
  width: 100%;
  height: 40px;
  background-color: #0e71eb;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

/* TEXT */
.legal-text {
  font-size: 12px;
  color: #666;
}

.recaptcha-text {
  font-size: 11px;
  color: #888;
  margin-top: 16px;
}

a {
  color: #0e71eb;
  text-decoration: none;
}