/* style/login.css */

:root {
  --sz777-primary: #F2C14E;
  --sz777-secondary: #FFD36B;
  --sz777-card-bg: #111111;
  --sz777-bg: #0A0A0A;
  --sz777-text-main: #FFF6D6;
  --sz777-border: #3A2A12;
  --sz777-glow: #FFD36B;
  --sz777-btn-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-login {
  background-color: var(--sz777-bg); /* Use specified background color */
  color: var(--sz777-text-main); /* Default text color for dark background */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.page-login__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-login__hero-section {
  background: var(--sz777-bg);
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-login__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-login__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--sz777-text-main);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-login__hero-description {
  font-size: 1.2rem;
  color: var(--sz777-text-main);
  margin-bottom: 30px;
}

.page-login__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
}

.page-login__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(242, 193, 78, 0.5);
}

.page-login__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-login__btn-primary,
.page-login__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-login__btn-primary {
  background: var(--sz777-btn-gradient);
  color: #000000; /* Ensure high contrast against gradient */
  border: none;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-login__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}