
    * { box-sizing: border-box; font-family: Arial, Helvetica, sans-serif; }
    body {
      margin: 0;
      background: #ffffff;
      color: #333;
    }

    .header {
      padding: 12px 0;
      border-bottom: none;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
    }
    .headerLogo {
      height: 25px;
      width: auto;
    }

    .login-wrapper {
      display: flex;
      justify-content: center;
      margin-top: 58px;
      margin-bottom: 70px;
    }
    .login-box {
      width: 340px;
      border: 1px solid #9fb6d0;
      border-radius: 3px;
      background: #f7f7f7;
      border: 1px solid #d6d6d6 !important;
    }
    .login-title {
      background: #f3e7dc;
      padding: 10px 14px;
      font-size: 12px;
      font-weight: bold;
      border-bottom: 1px solid #e0d2c4;
    }
    .login-content {
      padding: 18px 20px 22px;
      background: #f7f7f7;
    }
    .form-group {
      margin-bottom: 4px;
    }
    label {
      display: block;
      font-size: 13px;
      margin-bottom: 6px;
    }

    .remember {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      margin: 10px 0 18px;
    }
    .login-btn {
      display: block;
      margin: 0 auto;
      background: #f58220;
      color: #fff;
      border: none;
      padding: 6px 18px;
      font-size: 13px;
      border-radius: 4px;
      cursor: pointer;
    }

    footer {
      margin-top: 60px;
      padding: 20px 20px 10px;
      font-size: 13px;
      color: #555;
    }

    .footer {
      position: relative;
      height: 350px; /* kendine göre yüksekliği ayarlayabilirsin */
      padding: 20px;
    }

    .footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 3px;
      right: 3px;
      border-top: 1px solid #cfcfcf;
    }

    .footer::after {
      content: "";
      position: absolute;
      top: 280px;
      left: 3px;
      right: 3px;
      border-top: 1px solid #cfcfcf;
    }

    .footer-links {
      display: flex;
      gap: 70px;
      padding-top:10px;
    }
    .footer-links h4 {
      margin: 0 0 12px;
      font-size: 15px;
      color: #706e6e;
      font-weight:bold;
    }
    .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 8px;
    }
    .footer-links a {
      color: #555555 !important;
      font-size: 13px;
      text-decoration: none;
    }
    .footer-bottom {
      display: flex;
      align-items: flex-start;
      height: 50px;
      font-size: 13px;
      margin-top:10px;
    }
    .footer-bottom a {
      color: #555555;
      text-decoration: none;
      margin-left: 12px;
    }

    .input-text {
      border: 1px solid #d6d6d6 !important;
      width: 100%;
      height: 28px;
      padding: 4px 6px;
      font-size: 12px;
    }

    .input-check {
      border: 1px solid #d6d6d6 !important;
      font-size: 12px;
    }

    .input-label {
      color: #595959  !important;
      font-weight: bold;
      font-size: 12px;
    } 

    .privacy-link {
      position: relative;
      padding-left: 10px;
    }

    .privacy-link::after {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      height: 16px;
      width: 2px;
      background: #676666;
      transform: translateY(-50%);
    }

    
    .headerContainer {
      padding-left: 15px;
      padding-top: 8px;
    }
  