* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  height: 100vh;
  background: #f4f7fb;
}

/* ========================= */
/* PARTIE IMAGE */
/* ========================= */
.left {
  width: 50%;
  height: 100vh;

  background: url("../images/work.png") no-repeat center center;
  background-size: contain; /* ← image plus petite */

  background-color: #ffffff;
}

/* ========================= */
/* PARTIE FORMULAIRE */
/* ========================= */

.right {
  width: 50%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

/* Gentle container */
.form-box {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-box h2 {
  font-size: 30px;
  margin-bottom: 8px;
  color: #1f2937;
}

.subtitle {
  font-size: 14px;
  margin-bottom: 35px;
  color: #6b7280;
}

.input-group {
  margin-bottom: 20px;
}

label {
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
  color: #374151;
}

input {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  transition: 0.3s;
  background: #f9fafb;
}

input:focus {
  border-color: #25d366;
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  background: #25d366;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

button:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.options {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.options a {
  text-decoration: none;
  color: #25d366;
}

.footer-text {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 900px) {
  .left {
    display: none;
  }

  .right {
    width: 100%;
  }

  body {
    background: #ffffff;
  }
}
