.login-wrap {
  padding: 24px;
}

.login-panel {
  display: grid;
  gap: 18px;
  width: min(100%, 440px);
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: #111111;
}

.login-error {
  color: #ff5b5b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.84rem;
  line-height: 1.6;
  text-align: center;
}

.login-google-btn {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: #ffffff;
  color: #080808;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.login-google-btn:hover,
.login-google-btn:focus,
.login-google-btn:active {
  background: #f2f2f2 !important;
  color: #080808 !important;
  transform: translateY(-1px);
}

.login-remember {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.74);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.login-remember .form-check-input {
  float: none;
  margin: 0;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background-color: #141414;
  border-color: rgba(255, 255, 255, 0.14);
}

.login-remember .form-check-input:checked {
  background-color: #141414;
  border-color: rgba(255, 255, 255, 0.14);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23c0392b' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m5 10 3 3 7-8'/%3e%3c/svg%3e");
}

.login-disclaimer {
  color: rgba(255, 255, 255, 0.36);
  text-align: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.7;
  max-width: 30ch;
  margin: 0 auto;
}

.login-disclaimer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 57, 43, 0.5);
  padding-bottom: 2px;
}

.login-disclaimer a:hover {
  color: #ffffff;
  border-color: #c0392b;
}

.login-remember .form-check-input:focus {
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.14);
}

@media (max-width: 640px) {
  .login-wrap {
    padding: 14px;
  }

  .login-panel {
    gap: 16px;
    padding: 22px 18px;
    border-radius: 16px;
  }

  .login-google-btn {
    min-height: 50px;
    font-size: 13px;
  }

  .login-remember,
  .login-disclaimer {
    font-size: 13px;
  }
}
