.login-layout {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 420px;
}

.login-box {
  background: white;
  padding: 40px 35px;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(25, 5, 12, 0.08);
  text-align: center;
  max-width: 380px;
  width: 100%;
}

.login-box button {
  width: 100%;
  margin-top: 10px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 10px;
  color: #a1a1aa;
  font-size: 0.9em;
}

.divider span {
  flex: 1;
  height: 1px;
  background: #e4e4e7;
}

.oauth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--berry-primary);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oauth-btn .icon {
  font-size: 1.2em;
}

.oauth-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(226, 67, 98, 0.22);
}

.oauth-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

label {
  display: block;
  text-align: left;
  margin: 10px 0 4px;
  font-weight: 500;
}

footer {
  margin-top: 20px;
  font-size: 0.85em;
  color: rgba(50, 18, 31, 0.7);
}

@media (max-width: 720px) {
  .login-box {
    padding: 32px 28px;
  }
}
