/* General Styles */
body {
  font-family: 'Encode Sans Expanded', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Use viewport height */
  background-image: linear-gradient(rgba(36, 55, 130, 0.66), rgba(36, 55, 130, 0.66)), url('../assets/images/background.png');
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0; /* Remove default margin */
  padding: 0;
}

.account-title__container {
  text-align: center;
  align-self: center;
  margin: 2% 0;
}

.account-title {
  font-size: 60px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.2;
}

/* Maintenance Section */
.account-maintenance {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%; /* Ensures full height */
}

.account-maintenance__container {
  display: flex;
  justify-content: center;
  text-align: center;
}

.account-maintenance-message {
  color: #282b34;
  font-size: 30px;
  font-weight: 700;
  padding: 1em;
}

/* Content Section */
.account-content__container {
  display: grid;
  column-gap: 2em;
  align-self: start;
  padding: 0 5%;
  margin: 2% 0;
  width: 100%;
}

/* Card Styles */
.account-card__container {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 2em;
  margin: 2em auto;
  max-width: 800px; /* Restrict max width for responsiveness */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.account-card {
  display: grid;
  gap: 2em;
  flex-grow: 1;
}

/* Logo Styles */
.account-card__logo__container {
  display: flex;
  justify-content: center;
}

.account-card__logo {
  filter: brightness(0) saturate(100%) invert(18%) sepia(100%) saturate(1203%) hue-rotate(202deg) brightness(92%) contrast(102%);
  width: 40%;
  /* max-width: 200px; Restrict maximum width */
}

/* Footer Section */
.account-card__footer {
  margin-top: auto;
}

/* Responsive Design */

/* Tablet (768px and below) */
@media (max-width: 768px) {
  .account-title {
    font-size: 40px;
  }

  .account-card__container {
    padding: 1.5em;
    margin: 2em 1em;
  }

  .account-content__container {
    padding: 0 3%;
  }

  .account-maintenance-message {
    font-size: 28px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .account-title {
    font-size: 30px;
  }

  .account-card__container {
    padding: 1em;
    margin: 1em;
  }

  .account-maintenance-message {
    font-size: 26px;
  }

  .account-card__logo {
    width: 60%; /* Adjust logo size for smaller screens */
  }
}

@font-face {
  font-family: 'Encode Sans Expanded';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../assets/fonts/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpolKQY.woff2) format('woff2');
  /* unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; */
}

@font-face {
  font-family: 'Encode Sans Expanded';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../assets/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDBNPVo0.woff2) format('woff2');
  /* unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; */
}
