.page-login {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: transparent;
}

.page-login__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: url('[GALLERY:hero:1920x1080:vn88 slot,login background,gaming,neon,dark,blue]') center center / cover no-repeat;
  color: #ffffff;
  text-align: center;
}

.page-login__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.page-login__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.page-login__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-login__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-login__hero-description a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-login__hero-description a:hover {
  text-decoration: underline;
}

.page-login__login-form-wrapper {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  max-width: 450px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-login__login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-login__form-group {
  text-align: left;
}

.page-login__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #ffffff;
}

.page-login__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #26A9E0;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 1em;
  box-sizing: border-box;
}

.page-login__form-input::placeholder {
  color: #ccc;
}

.page-login__form-input:focus {
  outline: none;
  border-color: #EA7C07;
  box-shadow: 0 0 8px rgba(234, 124, 7, 0.5);
}

.page-login__form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9em;
}

.page-login__forgot-password {
  color: #26A9E0;
  text-decoration: none;
}

.page-login__forgot-password:hover {
  text-decoration: underline;
}

.page-login__remember-me {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffffff;
}

.page-login__checkbox {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #26A9E0;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  position: relative;
}

.page-login__checkbox:checked {
  background-color: #26A9E0;
  border-color: #26A9E0;
}

.page-login__checkbox:checked::before {
  content: '✔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 12px;
}

.page-login__btn-submit {
  background-color: #EA7C07;
  color: #ffffff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block; /* Make it a block element to act like a button */
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
}

.page-login__btn-submit:hover {
  background-color: #d86f06;
}

.page-login__register-text {
  margin-top: 15px;
  font-size: 1em;
  color: #f0f0f0;
}

.page-login__register-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-login__register-link:hover {
  text-decoration: underline;
}

.page-login__section {
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
}

.page-login__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #ffffff;
}

.page-login__section-title a {
  color: #26A9E0;
  text-decoration: none;
}
.page-login__section-title a:hover {
  text-decoration: underline;
}

.page-login__why-login-section {
  background-color: #0d0d0d;
}

.page-login__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-login__feature-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.page-login__feature-card:hover {
  transform: translateY(-5px);
}

.page-login__feature-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 2px solid #26A9E0;
}

.page-login__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-login__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-login__feature-description a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-login__guide-section {
  background-color: #1a1a1a;
}

.page-login__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-login__guide-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.page-login__guide-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #EA7C07;
  margin-bottom: 15px;
}

.page-login__guide-heading {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-login__guide-heading a {
  color: #26A9E0;
  text-decoration: none;
}
.page-login__guide-heading a:hover {
  text-decoration: underline;
}

.page-login__guide-text {
  color: #f0f0f0;
}

.page-login__guide-text a {
  color: #26A9E0;
  text-decoration: underline;
}