/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Albert Sans", sans-serif;
}

.page-container {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  min-height: 100vh;
  position: relative;
  background-color: rgba(236, 252, 213, 0.6);
}

/* Header styles */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fff;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  font-family: "Kolker Brush", cursive;
  font-size: 96px;
  color: #002a48;
  line-height: 1;
  font-weight: normal;
}

.logo-tagline {
  font-family: "Alata", sans-serif;
  font-size: 20px;
  color: #002a48;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: "Alata", sans-serif;
  font-size: 24px;
  color: #002a48;
  cursor: pointer;
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #002a48;
}

/* Main content styles */
.main-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.signup-container {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  width: 1002px;
  background-color: #fff;
}

.image-container {
  width: 405px;
  height: 702px;
  overflow: hidden;
}

.dog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.form-container {
  flex: 1;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-title {
  font-family: "Alata", sans-serif;
  font-size: 32px;
  color: #002a48;
  margin-bottom: 20px;
  font-weight: normal;
}

.form-divider {
  width: 100%;
  max-width: 496px;
  height: 1px;
  margin: 20px 0;
  background-color: rgba(0, 0, 0, 0.15);
  border: none;
}

.signup-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.form-input {
  width: 100%;
  max-width: 324px;
  height: 47px;
  border: none;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 0 15px;
  font-family: "Alata", sans-serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.42);
  background-color: rgba(217, 217, 217, 0.78);
}

.select-wrapper {
  position: relative;
  width: 100%;
  max-width: 324px;
}

.form-select {
  width: 100%;
  height: 47px;
  border: none;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 0 15px;
  font-family: "Alata", sans-serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.42);
  background-color: rgba(217, 217, 217, 0.78);
  appearance: none;
}

.select-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.42);
}

.radio-group-container {
  width: 100%;
  max-width: 324px;
  margin: 20px 0;
}

.radio-group-label {
  font-family: "Albert Sans", sans-serif;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.42);
  margin-bottom: 10px;
}

.radio-options {
  display: flex;
  gap: 20px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Albert Sans", sans-serif;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.42);
}

.radio-label input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.42);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.radio-label input[type="radio"]:checked+.radio-custom::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #002a48;
}

.submit-button {
  width: 100%;
  max-width: 324px;
  height: 47px;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: "Alata", sans-serif;
  font-size: 16px;
  cursor: pointer;
  margin: 20px 0;
  background-color: #002a48;
}

.login-prompt {
  font-family: "Albert Sans", sans-serif;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.42);
}

.login-link {
  color: #151a1e;
  cursor: pointer;
  text-decoration: none;
}

/* Footer styles */
.site-footer {
  padding-top: 80px;
  background-color: #ecfcd5;
}

.footer-content {
  display: flex;
  padding: 0 60px;
  border-bottom: 1px solid #d9d9d9;
}

.footer-logo {
  margin-right: 119px;
}

.footer-tagline {
  font-family: "Alata", sans-serif;
  font-size: 20px;
  color: #002a48;
}

.footer-links {
  display: flex;
  gap: 139px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-heading {
  font-family: "Alata", sans-serif;
  font-size: 18px;
  color: #0e2515;
  margin-bottom: 16px;
  font-weight: normal;
}

.footer-link {
  font-family: "Alata", sans-serif;
  font-size: 16px;
  color: #8c8c8c;
  margin-bottom: 16px;
  cursor: pointer;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 60px;
  border-top: 1px solid #dedede;
}

.copyright {
  font-family: "Alata", sans-serif;
  font-size: 16px;
  color: #8c8c8c;
}

.social-icons {
  display: flex;
  gap: 24px;
}

.social-link {
  text-decoration: none;
}

.social-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

/* Media queries */
@media (max-width: 991px) {
  .page-container {
    max-width: 991px;
  }

  .signup-container {
    flex-direction: column;
    width: 100%;
  }

  .image-container {
    width: 100%;
    height: 300px;
  }

  .form-container {
    padding: 20px;
  }

  .form-divider {
    width: 100%;
  }

  .main-nav {
    /* display: none; Removed to allow mobile menu */
    justify-content: flex-end;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .page-container {
    max-width: 640px;
  }

  .site-header {
    padding: 10px 20px;
  }

  .logo-text {
    font-size: 60px;
  }

  .main-content {
    padding: 20px;
  }

  .form-input,
  .select-wrapper,
  .form-select,
  .radio-group-container,
  .submit-button {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
    padding: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* Mobile Optimizations (Max-width: 576px) */
@media (max-width: 576px) {
  .logo-text {
    font-size: 48px;
  }

  .form-title {
    font-size: 28px;
  }

  .form-container {
    padding: 20px 15px;
  }

  .footer-bottom {
    padding: 30px 20px;
  }
}