/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(to right, #f0bd78, #da94e4);
}

/* Container */
.container {
  display: flex;
  width: 900px;
  height: 500px;
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

/* Left Section */
.left-section {
  background: #fde3b9;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.branding h1 {
  font-size: 22px;
  color: #333333;
  text-align: center;
  line-height: 1.5;
}

.branding h1 strong {
  font-weight: bold;
  color: #222222;
}

.illustration img {
  max-width: 100%;
  height: auto;
  margin-top: 30px;
}

/* Right Section */
.right-section {
  width: 50%;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333333;
}

.form-container p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 20px;
}

form label {
  display: block;
  font-size: 14px;
  color: #333333;
  margin-bottom: 5px;
}

form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  font-size: 14px;
}

.submit-btn {
  width: 100%;
  padding: 10px;
  background-color: #ff4b6a;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #e8415d;
}

.signin-link {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.signin-link a {
  color: #ff4b6a;
  text-decoration: none;
  font-weight: bold;
}

.signin-link a:hover {
  text-decoration: underline;
}
