* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
}

.container {
  display: flex;
  width: 100%;
  max-width: 1440px;
  min-height: 100vh;
  margin: 0 auto;
}

.left-panel {
  width: 60%;
  position: relative;
  padding: 20px;
}

.right-panel {
  width: 40%;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo {
  position: fixed;
  top: 0px;
  left: 10px;
  width: 270px;
  height: auto;
  z-index: 2;
}

.tagline {
  position: absolute;
  bottom: 60px;
  left: 20px;
  font-size: 32px;
  font-weight: 700;
  color: #ae7841;
  line-height: 1.2;
  z-index: 2;
}

.tagline span {
  color: #000;
}

/* Hexagon Gallery Styling */
.hexagon-gallery {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 100px;
  align-items: center;
}

.hex-row {
  display: flex;
  gap: 10px;
}

.hex-row.offset {
  margin-left: 58px;
}

.hex-img {
  width: 130px;
  height: 127px;
  object-fit: cover;
  clip-path: polygon(
    50% 0%, 
    93% 25%, 
    93% 75%, 
    50% 100%, 
    7% 75%, 
    7% 25%
  );
  transition: transform 0.3s ease;
}

.hex-img:hover {
  transform: scale(1.05);
}

/* Form Styling */
h1 {
  font-size: 48px;
  margin-bottom: 40px;
  font-weight: 700;
}

form {
  width: 100%;
  max-width: 460px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

input {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 25px;
  border: 1px solid #ae7841;
  border-radius: 18px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
}

.forgot-password {
  display: block;
  text-align: right;
  color: #ae7841;
  text-decoration: none;
  font-size: 14px;
  margin: -15px 0 25px;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #000;
}

button[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #ae7841;
  color: #000;
  border: none;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 30px;
}

.divider {
  text-align: center;
  position: relative;
  margin: 20px 0;
  font-size: 12.5px;
  font-weight: 600;
}

.divider::before, .divider::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #ddd;
  width: 38%;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.social-buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.social-buttons button {
  padding: 12px 15px;
  background-color: #ae7841;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 780;
  cursor: pointer;
  width: 30%;
}

.login-link {
  text-align: center;
  font-size: 20px;
}

.login-link a {
  color: blue;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .container {
    flex-direction: column;
  }
  
  .left-panel, .right-panel {
    width: 100%;
  }
  
  .left-panel {
    height: auto;
  }
  
  .tagline {
    bottom: 20px;
  }

  .hexagon-gallery {
    margin-top: 20px;
  }
}