:root {
  --primary-color: #7198F8;
  --light-neutral: #525763;
  
  --font-main: 'Urbanist', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
}

html, body {
  height: 100%;
  background-color: #ffffff;
  color: #0a0a0a;
}

/* ---------- Layout ---------- */
.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@media (min-width: 1024px) {
  .container {
    flex-direction: row;
    width: 100vw;
    height: 100vh;
  }
}

/* ---------- Form Section ---------- */
.form-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 2rem;
  min-height: 100vh;
  background-color: #fff;
}

@media (min-width: 768px) {
  .form-section {
    padding: 4rem;
  }
}

@media (min-width: 1024px) {
  .form-section {
    width: 50%;
    height: 100vh;
  }
}

/* ---------- Logo ---------- */
header .logo {
  width: 120px;
  height: auto;
  margin-bottom: 1.5rem;
}

/* ---------- Form Content ---------- */
.form-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.form-inner {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

/* ---------- Footer ---------- */
footer .terms {
  font-size: 0.85rem;
  color: #555;
  text-align: center;
  margin-top: auto;
  padding-top: 2rem;
}

h1 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 2rem;
  }
}

/* ---------- Social Buttons ---------- */
.social-buttons button {
  width: 100%;
  font-size: 16px;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
  border: 1px solid var(--primary-color, #7198F8);
  background-color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--primary-color, #7198F8);
}

/* ---------- Separator ---------- */
.separator {
  text-align: center;
  margin: 1.2rem 0;
  position: relative;
}

.separator span {
  background: #fff;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.separator::before {
  content: '';
  height: 1px;
  background: #ddd;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
}

/* ---------- Form Elements ---------- */
form input {
  width: 100%;
  padding: 12px 24px;
  margin-bottom: 1rem;
  border-radius: 999px;
  border: 1px solid #ddd;
  font-size: 1rem;
  background-color:#4D6BFE0D;
  color: var(  --light-neutral, #525763);
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  padding-right: 2.5rem;
}

.show-hide {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

.continue-btn {
  background-color: var(--primary-color, #7198F8);
  color: #fff;
  padding: 0.9rem;
  width: 100%;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 0.5rem;
  font-size: 1rem;
}

.login-link,
.terms {
  font-size: 0.85rem;
  color: #555;
  text-align: center;
  margin-top: 1rem;
}

.login-link a,
.terms a {
  color: var(--primary-color, #7198F8);
  text-decoration: none;
}

/* ---------- Right Illustration ---------- */
.illustration-section {
  display: none;
}

@media (min-width: 1024px) {
  .illustration-section {
    display: block;
    width: 50%;
    height: 100vh;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }

  .illustration-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

