/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Alata", sans-serif;
}

.page-container {
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
}

/* Header styles */
.main-header {
  width: 100%;
  background-color: rgba(236, 252, 213, 0.6);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}

@media (max-width: 991px) {
  .header-content {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 640px) {
  .header-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-text {
  color: #002a48;
  font-weight: normal;
}

.brand-name {
  font-family: "Kolker Brush", cursive;
  font-size: 96px;
}

@media (max-width: 991px) {
  .brand-name {
    font-size: 72px;
  }
}

@media (max-width: 640px) {
  .brand-name {
    font-size: 48px;
  }
}

.logo-separator {
  font-family: "Kokoro", sans-serif;
  font-size: 20px;
}

.brand-tagline {
  font-family: "Alata", sans-serif;
  font-size: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
}

.nav-link {
  color: #002a48;
  font-family: "Alata", sans-serif;
  font-size: 24px;
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.menu-icon {
  width: 24px;
  height: 24px;
  color: #002a48;
}

/* Login section styles */
.login-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 60px;
}

@media (max-width: 991px) {
  .login-section {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 640px) {
  .login-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.login-container {
  display: flex;
  gap: 80px;
}

@media (max-width: 991px) {
  .login-container {
    flex-direction: column;
    gap: 40px;
  }
}

.login-image {
  width: 405px;
  height: 625px;
  opacity: 0.7;
}

@media (max-width: 991px) {
  .login-image {
    width: 80%;
    /* Reduce width */
    max-width: 350px;
    height: auto;
    margin: 0 auto;
    /* Center */
    display: block;
  }
}

.login-form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 150px;
}

.login-title {
  color: #002a48;
  font-family: "Alata", sans-serif;
  font-size: 32px;
  font-weight: normal;
}

.input-group {
  width: 324px;
}

@media (max-width: 640px) {
  .input-group {
    width: 100%;
  }
}

.login-input {
  width: 100%;
  height: 47px;
  padding: 0 15px;
  border-radius: 4px;
  border: none;
  background-color: rgba(217, 217, 217, 0.78);
  color: rgba(0, 0, 0, 0.42);
  font-family: "Alata", sans-serif;
  font-size: 16px;
}

.login-button {
  width: 324px;
  height: 47px;
  background-color: #002a48;
  color: #fff;
  font-family: "Alata", sans-serif;
  font-size: 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

@media (max-width: 640px) {
  .login-button {
    width: 100%;
  }
}

.register-prompt {
  font-size: 15px;
  font-family: "Albert Sans", sans-serif;
}

.register-text {
  color: rgba(0, 0, 0, 0.42);
}

.register-link {
  color: #151a1e;
  cursor: pointer;
}

/* Footer styles */
.main-footer {
  background-color: #ecfcd5;
  padding: 80px 60px;
}

@media (max-width: 991px) {
  .main-footer {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 640px) {
  .main-footer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.footer-content {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 80px;
}

@media (max-width: 991px) {
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}

.footer-logo {
  color: #002a48;
}

.footer-links {
  display: flex;
  gap: 139px;
}

@media (max-width: 991px) {
  .footer-links {
    flex-wrap: wrap;
    gap: 40px;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-heading {
  color: #0e2515;
  font-family: "Alata", sans-serif;
  font-size: 18px;
  font-weight: normal;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.footer-link {
  color: #8c8c8c;
  font-family: "Alata", sans-serif;
  font-size: 16px;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}

.copyright {
  color: #8c8c8c;
  font-family: "Alata", sans-serif;
  font-size: 16px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.social-icon {
  width: 24px;
  height: 24px;
}

/* Mobile Optimizations */
@media (max-width: 991px) {
  .main-nav {
    /* display: none;  Removed to allow mobile menu */
    justify-content: flex-end;
  }
}

@media (max-width: 576px) {
  .login-section {
    padding: 40px 20px;
  }

  .login-container {
    gap: 20px;
  }

  .login-form-container {
    margin-top: 20px;
    width: 100%;
  }

  .login-title {
    font-size: 28px;
  }

  .input-group,
  .login-button {
    width: 100%;
  }

  .footer-content {
    gap: 30px;
  }
}