 body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: #f9f9f9;
    }

    .loader-wrapper {
      display: none;
    }

    .header-wrapper {
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      padding: 10px 0;
    }

    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .logo-block img {
      height: 40px;
    }

    .nav-links ul {
      list-style: none;
      display: flex;
      gap: 15px;
      margin: 0;
      padding: 0;
    }

    .nav-links a {
      text-decoration: none;
      color: #333;
    }

    .login-btn .btn-link {
      background-color: #007bff;
      color: #fff;
      padding: 8px 16px;
      border-radius: 4px;
      text-decoration: none;
    }

    .form-section {
      padding: 50px 20px;
      background-color: #fff;
    }

    .form-container {
      max-width: 600px;
      margin: 0 auto;
      background: #ffffff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .form-header h2 {
      text-align: center;
      margin-bottom: 20px;
    }

    .input-group {
      margin-bottom: 20px;
    }

    .input-group label {
      display: block;
      margin-bottom: 6px;
    }

    .input-group input {
      width: 100%;
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .error-text {
      color: red;
      font-size: 14px;
    }

    .submit-button {
      background-color: #28a745;
      color: #fff;
      padding: 10px 20px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }

    .social-login-separator {
      text-align: center;
      position: relative;
      margin: 30px 0;
    }

    .social-login-separator hr {
      border: none;
      border-top: 1px solid #ccc;
    }

    .social-login-separator span {
      background: #fff;
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      padding: 0 10px;
      color: #666;
    }

  .yandex-auth-btn,
.google-auth-btn {
  display: inline-flex;           /* flex для выстраивания по горизонтали */
  align-items: center;            /* вертикальное выравнивание */
  padding: 10px 20px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  margin-bottom: 9px;
  margin-right: 10px;             /* отступ между кнопками */
  cursor: pointer;
}

.yandex-auth-btn {
  background-color: #ffcc00;
  color: white;
  border: none;
}

.google-auth-btn {
  background-color: white;
  color: #444;
  border: 1px solid #ddd;
}

/* картинки внутри кнопок */
.yandex-auth-btn img,
.google-auth-btn img {
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}
