/* General styles for the login page */
.page-login {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Default text color for dark background */
  background: #B71C1C; /* Main page background */
}

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

.page-login__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFF5E1;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-login__section-description {
  font-size: 18px;
  color: #FFF5E1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-login__sub-title {
  font-size: 24px;
  font-weight: 600;
  color: #FFF5E1;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-login__btn-submit,
.page-login__btn-download,
.page-login__btn-primary {
  display: block;
  width: 100%;
  max-width: 300px; /* Limit max width for buttons */
  margin: 20px auto 10px auto;
  padding: 15px 25px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Custom button color */
  color: #7A0E0E; /* Deep Red text for gold button */
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
  box-sizing: border-box;
}

.page-login__btn-submit:hover,
.page-login__btn-download:hover,
.page-login__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}