* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", "Segoe UI", Roboto, sans-serif;
}

body {
  background: #F6F9FC;
  color: #1F2937;
}

/* LOGIN FULLSCREEN */
.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #73D13D 0%, #20C997 52%, #1890FF 100%);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: #f8faf8;
}

.login-visual {
  position: relative;
  overflow: hidden;
  background-color: #f3f8f4;
  display: flex;
  align-items: start;
  padding: 80px;
}

/* LE DEMI CERCLE */
.login-visual::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -360px;
  width: 520px;
  height: 120%;
  background: #ffffff;
  border-radius: 50%;
  z-index: 2;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0.35) 100%);
  z-index: 1;
}

.login-content {
  position: relative;
  z-index: 3;
  max-width: 540px;
}

.logo {
  width: 180px;
  margin-bottom: 40px;
}

.login-card-logo {
  text-align: center;
}
.login-card-logo > img {
  width: 92px;
}

.login-content h1 {
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 28px;
  color: #18352e;
  font-weight: 800;
}

.login-content h1 span {
  color: #59b85a;
}

.login-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #66756f;
  max-width: 480px;
}

.benefits {
  margin-top: 50px;
  display: grid;
  gap: 28px;
}

.benefit {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #ecf8ec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.benefit strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: #17342d;
}

.benefit small {
  color: #71807a;
  font-size: 15px;
}

.content-image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  text-align: right;
}
.content-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgb(243, 248, 244) 0%, rgba(243, 248, 244, 0) 100%);
  top: 0;
  left: 0;
}

.family-image {
  width: 80%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  vertical-align: bottom;
}

/* RIGHT SIDE */
.login-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  background: radial-gradient(circle at bottom right, rgba(47, 128, 237, 0.08), transparent 30%), #ffffff;
}

.login-card {
  width: 100%;
  max-width: 470px;
  padding: 54px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e7eeea;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(31, 55, 48, 0.1);
  position: relative;
  z-index: 5;
}

.card-logo {
  width: 170px;
  display: block;
  margin: 0 auto 32px;
}

.login-card h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 36px;
  color: #17342d;
}

.input-box {
  position: relative;
  margin-bottom: 20px;
}

.input-box input {
  width: 100%;
  height: 58px;
  border-radius: 16px;
  border: 1px solid #dce5df;
  background: #fff;
  padding-left: 52px;
  padding-right: 18px;
  font-size: 16px;
  color: #17342d;
  transition: 0.2s;
}

/* ICON */
.input-icon {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  font-size: 22px;
  color: #9aa8a2;
  pointer-events: none;
}

/* FOCUS */
.input-box input:focus {
  outline: none;
  border-color: #58b957;
  box-shadow: 0 0 0 4px rgba(88, 185, 87, 0.1);
}

.btn-login {
  width: 100%;
  height: 60px;
  border: 0;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #63c94d 0%, #25c0a6 55%, #1f91f3 100%);
  box-shadow: 0 18px 34px rgba(45, 170, 120, 0.24);
}

input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

/* Chrome autofill remove blue */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #17342d !important;
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
  caret-color: #17342d;
}

.form-group > span {
  font-size: 0.8em;
  font-weight: bold;
}

.login-security {
  font-size: 0.8em;
  margin-top: 10px;
}

.login-options {
  text-align: right;
  font-size: 0.8em;
  margin-bottom: 10px;
}

.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px 0;
  color: #9aa8a2;
  font-size: 14px;
  font-weight: 500;
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), #dfe7e2);
}

.separator::after {
  background: linear-gradient(90deg, #dfe7e2, rgba(0, 0, 0, 0));
}

.login-register {
  font-size: 0.8em;
  text-align: right;
  margin-top: 20px;
}/*# sourceMappingURL=style.css.map */