* { box-sizing: border-box; }
html, body {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111827;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page{
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* LEFT PANEL */
.left{
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 20px;
}

/* Move the whole form a bit to the RIGHT like the reference */
.form-wrap{
  width: 420px;
  max-width: 92vw;

  /* this is the key: */
  transform: translateX(60px); /* try 40px–90px */
}

/* Title: lighter + slightly smaller to look like the reference */
.title{
  margin: 0 0 22px;
  font-size: 42px;          /* was 44px */
  font-weight: 700;         /* was 800 (too thick) */
  letter-spacing: -0.3px;
}

/* Optional: if you want title to look even lighter, use 650 or 600:
.title{ font-weight: 600; }
*/

.error{
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 12px 14px;
  border-radius: 10px;
  margin: 0 0 16px;
  font-size: 14px;
}

.form{ display: grid; gap: 10px; }

.label{
  font-size: 14px;
  color: #111827;
  margin-top: 8px;
}

.input{
  width: 100%;
  height: 46px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.input:focus{
  border-color: #818cf8;
  box-shadow: 0 0 0 3px rgba(99,102,241,.20);
}

.password-wrap{
  position: relative;
  display: flex;
  align-items: center;
}
.password-wrap .input{
  padding-right: 46px;
}

.eye{
  position: absolute;
  right: 8px;
  height: 34px;
  width: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  opacity: .65;
}
.eye:hover{ opacity: 1; }

.forgot{
  display: inline-block;
  margin: 8px 0 8px;
  color: #4f46e5;
  text-decoration: none;
  font-size: 14px;
}
.forgot:hover{ text-decoration: underline; }

.btn{
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: #4f46e5;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  margin-top: 8px;
}
.btn:hover{ filter: brightness(.95); }

.captcha{
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

/* RIGHT PANEL */
.right{
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 56px 56px;
  background: #0f1f34;
  color: #e5e7eb;
}

/* big soft circles */
.right::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 30% 35%, rgba(255,255,255,.06) 0 26%, transparent 27% 100%),
    radial-gradient(circle at 60% 20%, rgba(255,255,255,.05) 0 22%, transparent 23% 100%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,.05) 0 28%, transparent 29% 100%),
    radial-gradient(circle at 25% 80%, rgba(255,255,255,.04) 0 24%, transparent 25% 100%);
  pointer-events:none;
}

/* dotted pattern top-right */
.right::after{
  content:"";
  position:absolute;
  top: 28px;
  right: 28px;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(rgba(255,255,255,.18) 1.2px, transparent 1.2px);
  background-size: 10px 10px;
  opacity: .45;
  pointer-events:none;
}

/* Make this wider so paragraph wraps later (more like your reference) */
.right-content{
  position: relative;
  z-index: 1;
  max-width: 720px;     /* was 560px */
}

.right-content h2{
  margin: 0 0 18px;
  font-size: 56px;

 /
  font-weight: 600;         
  letter-spacing: -0.2px;   
  line-height: 1.1;

  color: #f9fafb;
}


/* allow text to extend wider */
.right-content p{
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(229,231,235,.80);
  max-width: 680px;     /* was 520px */
}

/* RESPONSIVE */
@media (max-width: 900px){
  .page{ grid-template-columns: 1fr; }
  .right{ min-height: 42vh; padding: 36px 22px; }
  .right-content{ max-width: 100%; }
  .right-content h2{ font-size: 38px; }
  .title{ font-size: 38px; }
  .form-wrap{ transform: none; } /* remove shift on mobile */
}

/* Remove focus outline glow if you dislike it */
a:focus, button:focus {
  outline: none;
  box-shadow: none;
}


.btn-logout{
  display: inline-block;
  margin-top: 22px;
  padding: 14px 40px;
  border-radius: 999px;
  background: #4f46e5;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all .2s ease;
}

.btn-logout:hover{
  background: #4338ca;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(79,70,229,.35);
}

.btn-logout:focus,
.btn-logout:active{
  outline: none;
  box-shadow: none;
}