* {
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }

    body {
      margin: 0;
      background: #f3f6fb;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
    }

    .login-wrapper {
      display: flex;
      width: 100%;
      max-width: 1100px;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,.08);
    }

    /* LEFT */
    .login-info {
      width: 50%;
      padding: 50px;
      background: linear-gradient(135deg, #fff6d6, #fdfdfd);
      position: relative;
    }

    .login-form-main {
      min-height: 720px;
    }

    .logo img {
      height: 80px;
      margin-bottom: 20px;
    }

    .login-info h1 {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .subtitle {
      color: #555;
      margin-bottom: 30px;
    }

    .benefits {
      list-style: none;
      padding: 0;
    }

    .benefits li {
      margin-bottom: 12px;
      font-size: 16px;
    }

    .illustration img {
      margin-top: 40px;
      width: 100%;
      max-width: 100%;
      position: absolute;
      bottom: 0;
      left: 0;
    }

    /* RIGHT */
    .login-form {
      width: 50%;
      padding: 50px;
    }

    .login-form h2 {
      font-size: 28px;
    }

    .form-subtitle {
      color: #666;
      margin-bottom: 30px;
    }

    .form-group {
      margin-bottom: 20px;
      position: relative;
    }

    .form-group label {
      display: block;
      margin-bottom: 0px;
      font-weight: 500;
    }

    .form-group input {
      width: 100%;
      padding: 12px 14px;
      border-radius: 10px;
      border: 1px solid #ddd;
      font-size: 15px;
    }

    .password-group {
      position: relative;
    }

    .toggle-password {
      position: absolute;
      right: 12px;
      top: 36px;
      background: none;
      border: none;
      cursor: pointer;
    }

    .form-options {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      margin-bottom: 25px;
    }

    .form-options a {
      color: #c9b33f;
      text-decoration: none;
    }

    .btn-primary {
      width: 100%;
      padding: 14px;
      background: #c9b33f;
      border: none;
      border-radius: 12px;
      color: #fff;
      font-size: 16px;
      cursor: pointer;
    }

    .btn-primary:hover {
      background: #bba52e;
    }

    .divider {
      text-align: center;
      margin: 25px 0;
      color: #aaa;
    }

    .btn-social {
      width: 100%;
      padding: 12px;
      margin-bottom: 12px;
      border-radius: 10px;
      border: 1px solid #ddd;
      background: #fff;
      cursor: pointer;
    }

    .btn-social.google:hover {
      border-color: #db4437;
    }

    .btn-social.microsoft:hover {
      border-color: #0078d4;
    }

    .no-account {
      margin-top: 20px;
      font-size: 14px;
      text-align: center;
    }

    .no-account a {
      color: #c9b33f;
      font-weight: 600;
    }

    .task-body {
        display: flex;
        align-items: center;
        gap: 10px;
        height: 100%;
    }

    .task-body i {
        padding: 10px;
        font-size: 2rem !important;
        border-radius: 50%;
        margin-right: 5px;
        color: #af7b11;
        background: #FFF;
        border: 1px solid #af7b11;
    }

    .task-body div {
        color: #000;
        line-height: 1.2;
    }

    .task-body span {
        font-weight: 400 !important;
        font-size: 12px;
        color: #6d6d6d;
    }

    .form-group {
        margin-bottom: 10px;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .login-wrapper {
        flex-direction: column;
      }
      .login-info,
      .login-form {
        width: 100%;
      }
      .illustration {
          padding-bottom: 50%;
      }
    }