body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f4f4f4;
}

.container {
  display: flex;
  max-width: 1200px;
  width: 90%;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.left-section {
  flex: 1;
  position: relative;
}

.family-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.text-content h1 {
  font-size: 24px;
  margin: 0;
}

.text-content p {
  font-size: 16px;
}

.right-section {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logo img {
  width: 100px;
}

h2 {
  margin: 20px 0;
  color: #333;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.login-btn {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.login-btn.customer {
  background-color: #007bff;
  color: white;
}

.login-btn.sales {
  background-color: #28a745;
  color: white;
}

.login-btn.employee {
  background-color: #ffc107;
  color: black;
}

.info {
  color: red;
  font-size: 14px;
}

footer {
  margin-top: auto;
  font-size: 12px;
  color: #666;
}

/* Responsive Design */

@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
    width: 100%;
    box-shadow: none;
  }

  .left-section {
    height: 300px;
  }

  .family-image {
    height: 100%;
    object-fit: cover;
  }

  .text-content h1 {
    font-size: 20px;
  }

  .text-content p {
    font-size: 14px;
  }

  .right-section {
    padding: 10px;
  }

  h2 {
    font-size: 18px;
  }

  .buttons {
    width: 100%;
    gap: 8px;
  }

  .login-btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  footer {
    text-align: center;
    font-size: 10px;
  }
}

@media screen and (max-width: 480px) {
  .container {
    width: 100%;
  }

  .left-section {
    height: 250px;
  }

  .family-image {
    height: 100%;
  }

  .text-content h1 {
    font-size: 18px;
  }

  .text-content p {
    font-size: 12px;
  }

  .right-section {
    padding: 5px;
  }

  h2 {
    font-size: 16px;
  }

  .login-btn {
    font-size: 12px;
    padding: 6px 14px;
  }

  footer {
    font-size: 9px;
  }
}
