* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Gabriola, sans-serif;
}

body {
  background-color: #f5f6f8;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
}

/* Page Wrapper for Side-by-Side Layout */
.page-wrapper {
  display: flex;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Form Section Styles */
.form-section {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.form-container {
  width: 100%;
  max-width: 400px;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  /* margin-bottom: 30px; */
}

.form-box {
  padding: 30px;
  border-radius: 10px;
  /* margin-top: 10px; */
  width: 100%;
}

.form-box h2 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: #111827;
}

.form-subtitle {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 20px;
}

.input-group {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 15px;
  background-color: #f9fafb;
  position: relative;
}

.input-group .bx {
  margin-right: 10px;
  color: #087a71;
}

.input-group input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 1rem;
  background: transparent;
}

.eye-icon {
  position: absolute;
  right: 10px;
  cursor: pointer;
  color: #087a71;
}

button {
  width: 100%;
  background-color: #0d9488;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0f766e;
}

.register {
  margin-top: 15px;
  color: #6b7280;
}

.register a {
  color: #0d9488;
  text-decoration: none;
  font-weight: bold;
}

/* Image Section Styles */
.image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .page-wrapper {
    flex-direction: column;
    width: 95%;
    max-width: 450px;
  }

  .form-section {
    padding: 30px;
  }

  .image-wrapper {
    padding: 10px;
    height: 250px;
  }
}