/* Base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  color: #101828;
}

/* Layout */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

/* Header */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Footer */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.footer-text {
  font-weight: 400;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}

/* Login options */
.login-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.login-option {
  display: flex;
  width: 400px;
  flex-direction: column;
  align-items: start;
  padding: 2.5rem;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 2px 4px -2px rgba(16, 24, 40, 0.1),
    0 4px 8px -2px rgba(16, 24, 40, 0.1);
}

.login-option h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.login-option-text {
  font-size: 1rem;
  font-weight: 400;
  color: #475467;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.login-option-button {
  background-color: #6941c6;
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  width: 100%;
  transition: opacity 0.2s ease;
}

.login-option-button:hover {
  opacity: 0.9;
}

.login-option-button.secondary-button {
  background-color: #ff5b24;
}

/* Links */
a {
  color: #101828;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Image section */
.image {
  background-color: #4f6a7e;
  display: flex;
  justify-content: center;
  align-items: end;
  padding: 0 2rem 4rem 2rem;
}

.image img {
  max-width: 100%;
  height: auto;
}

/* Mobile styles */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .image {
    display: none;
  }

  .login-option {
    width: 100%;
    max-width: 400px;
  }

  footer {
    flex-direction: column;
    gap: 1rem;
  }
}
