      .login-section {
        min-height: 80vh;
        display: flex;
        align-items: center;
        padding: 100px 0 80px;
        background: linear-gradient(to top , #5863ff00 , #7d86ff);
      }

      .login-container {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        max-width: 900px;
        margin: 0 auto;
        margin-top: 10vh;
      }

      .login-form-side {
        padding: 60px 50px;
      }

      .login-form-side h2 {
        color: #162447;
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 10px;
        text-align: center;
      }

      .login-form-side p {
        color: #5B657E;
        font-size: 14px;
        margin-bottom: 25px;
        text-align: center;
      }

      /* Discord Login Button */
      .btn-discord {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 15px;
        background: #5865F2;
        color: #fff;
        border: none;
        border-radius: 10px;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s;
        margin-bottom: 20px;
      }

      .btn-discord:hover {
        background: #4752C4;
        transform: translateY(-2px);
        color: #fff;
      }

      .btn-discord i {
        font-size: 24px;
      }

      /* Divider */
      .divider {
        display: flex;
        align-items: center;
        text-align: center;
        margin: 20px 0;
      }

      .divider::before,
      .divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #e5e5e5;
      }

      .divider span {
        padding: 0 15px;
        color: #5B657E;
        font-size: 14px;
      }

      .form-group {
        margin-bottom: 18px;
      }

      .form-group label {
        display: block;
        color: #162447;
        font-weight: 500;
        margin-bottom: 8px;
        font-size: 14px;
      }

      .input-with-icon {
        position: relative;
        display: flex;
        align-items: center;
      }

      .input-with-icon i {
        position: absolute;
        right: 18px;
        color: #5B657E;
        font-size: 18px;
        pointer-events: none;
      }

      .input-with-icon input {
        width: 100%;
        padding: 14px 50px 14px 20px;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        font-size: 15px;
        transition: all 0.3s;
        background: #f8f9fa;
      }

      .input-with-icon input:focus {
        outline: none;
        border-color: #5864FF;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(88, 100, 255, 0.1);
      }

      .input-with-icon input:focus + i {
        color: #5864FF;
      }

      .login-options {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
      }

      .remember-me {
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .remember-me input {
        width: auto;
      }

      .forgot-password {
        color: #5864FF;
        text-decoration: none;
        font-size: 14px;
      }

      .forgot-password:hover {
        text-decoration: underline;
      }

      .btn-login {
        width: 100%;
        padding: 15px;
        background: #5864FF;
        color: #fff;
        border: none;
        border-radius: 10px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
      }

      .btn-login:hover {
        background: #162447;
        transform: translateY(-2px);
      }

      .register-link {
        text-align: center;
        margin-top: 20px;
        color: #5B657E;
      }

      .register-link a {
        color: #5864FF;
        font-weight: 600;
        text-decoration: none;
      }

      .register-link a:hover {
        text-decoration: underline;
      }

      .login-image-side {
        background: linear-gradient(135deg, #5864FF 0%, #7c85ff 100%);
        padding: 60px 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #fff;
        text-align: center;
        height: 100%;
      }

      .login-image-side h3 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #fff;
      }

      .login-image-side p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
        color: rgba(255, 255, 255, 0.9);
      }

      .login-image-side .features {
        text-align: right;
        width: 100%;
      }

      .login-image-side .features li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .login-image-side .features li i {
        color: #fdd446;
        font-size: 20px;
      }

      @media (max-width: 991px) {
        .login-image-side {
          display: none;
        }
      }

      @media (max-width: 767px) {
        .login-section {
          min-height: auto;
          padding: 110px 0 50px;
        }

        .login-container {
          margin-top: 0;
          border-radius: 18px;
        }

        .login-form-side {
          padding: 34px 22px;
        }

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

        .btn-discord,
        .btn-login {
          font-size: 16px;
          padding: 14px;
        }
      }

      @media (max-width: 575px) {
        .login-section {
          padding: 100px 0 40px;
        }

        .login-form-side {
          padding: 28px 16px;
        }

        .login-form-side p,
        .divider span,
        .input-with-icon input {
          font-size: 14px;
        }

        .input-with-icon input {
          padding: 13px 46px 13px 18px;
        }

        .input-with-icon i {
          right: 16px;
          font-size: 16px;
        }
      }
