*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  width:100%;
  height:100%;
}

body.auth-page{
  font-family: Arial, sans-serif;
  background:#000;
  color:#fff;
  height:100vh;
  overflow:hidden;
}

.auth-layout{
  display:flex;
  width:100%;
  height:100vh;
}

.auth-image-side{
  position:relative;
  width:70%;
  height:100vh;
  overflow:hidden;
  background:#000;
}

.auth-image-side img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 20%;
  display:block;
}

.auth-image-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to right, rgba(0,0,0,0.08), rgba(0,0,0,0.30));
}

.auth-form-side{
  width:30%;
  height:100vh;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
}

.auth-box{
  width:100%;
  max-width:360px;
  text-align:center;
}

.auth-logo{
  max-width:160px;
  width:100%;
  margin:0 auto 14px;
  display:block;
}

.auth-box h1{
  font-size:38px;
  color:#fff;
  margin-bottom:8px;
  font-weight:700;
  line-height:1.1;
}

.auth-subtext{
  font-size:13px;
  color:#b8b8b8;
  margin-bottom:12px;
  line-height:1.4;
}

.auth-form{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.auth-field input{
  width:100%;
  height:46px;
  border:1px solid #222;
  border-radius:12px;
  padding:0 16px;
  font-size:15px;
  outline:none;
  color:#fff;
  background:#0f0f0f;
}

.auth-field input::placeholder{
  color:#8a8a8a;
}

.auth-field input:focus{
  border-color:#ff7a00;
  box-shadow:0 0 0 3px rgba(255,122,0,0.14);
}

.auth-main-btn{
  width:100%;
  height:46px;
  border:none;
  border-radius:12px;
  background:#ff7a00;
  color:#000;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

.auth-main-btn:hover{
  background:#e76f00;
}

.auth-divider{
  position:relative;
  margin:10px 0 8px;
  text-align:center;
}

.auth-divider::before{
  content:"";
  position:absolute;
  top:50%;
  left:0;
  width:100%;
  height:1px;
  background:#222;
}

.auth-divider span{
  position:relative;
  background:#000;
  padding:0 12px;
  color:#8c8c8c;
  font-size:13px;
}

.auth-socials{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.auth-social-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  height:44px;
  border:1px solid #222;
  border-radius:12px;
  text-decoration:none;
  color:#fff;
  font-size:14px;
  font-weight:600;
  transition:0.3s;
  background:#0f0f0f;
}

.auth-social-btn:hover{
  border-color:#ff7a00;
  color:#ff7a00;
  background:#151515;
}

.auth-social-btn .social-icon{
  width:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:17px;
  line-height:1;
}

.auth-switch{
  margin-top:12px;
  color:#b8b8b8;
  font-size:13px;
  line-height:1.4;
}

.auth-switch a{
  color:#ff7a00;
  text-decoration:none;
  font-weight:700;
  margin-left:6px;
}

.auth-back{
  display:inline-block;
  margin-top:10px;
  color:#9f9f9f;
  text-decoration:none;
  font-size:12px;
  border-bottom:1px solid transparent;
  transition:0.3s;
}

.auth-back:hover{
  color:#ff7a00;
  border-color:#ff7a00;
}

@media(max-width:1100px){
  .auth-image-side{
    width:62%;
  }

  .auth-form-side{
    width:38%;
    padding:14px 18px;
  }

  .auth-box{
    max-width:340px;
  }

  .auth-logo{
    max-width:145px;
    margin-bottom:12px;
  }

  .auth-box h1{
    font-size:34px;
  }

  .auth-subtext{
    font-size:12px;
    margin-bottom:10px;
  }

  .auth-field input,
  .auth-main-btn,
  .auth-social-btn{
    height:42px;
  }
}

@media(max-width:768px){
  body.auth-page{
    overflow:auto;
    height:auto;
  }

  .auth-layout{
    flex-direction:column;
    height:auto;
  }

  .auth-image-side,
  .auth-form-side{
    width:100%;
  }

  .auth-image-side{
    height:280px;
    min-height:280px;
  }

  .auth-form-side{
    height:auto;
    min-height:auto;
    padding:28px 18px;
  }

  .auth-box{
    max-width:100%;
  }

  .auth-box h1{
    font-size:32px;
  }
}