* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  color: #1c1e21;
  line-height: 1.34;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  background: #ffffff;
}

.page-container {
  display: flex;
  min-height: 100vh;
}

/* Left Section - Blue gradient background */
.left-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
  background: linear-gradient(135deg, #d8e2f3 0%, #e4e9f2 50%, #e9ebee 100%);
  position: relative;
}

.left-content {
  max-width: 520px;
  width: 100%;
}

.meta-logo {
  margin-bottom: 24px;
}

.meta-logo img {
  width: 72px;
  height: 48px;
}

.main-title {
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 32px;
  color: #1c1e21;
}

.description {
  font-size: 16px;
  line-height: 24px;
  color: #1c1e21;
  margin-bottom: 32px;
}

.description b {
  font-weight: 600;
}

.tools-intro {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 12px;
  color: #1c1e21;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  position: relative;
  padding-left: 16px;
  margin-top: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #1c1e21;
}

.benefits-list li:first-child {
  margin-top: 4px;
}

.benefits-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1c1e21;
}

/* Right Section - White/light background */
.right-section {
  width: 600px;
  min-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  background: #ffffff;
}

.login-card {
  width: 100%;
  max-width: 400px;
}

.login-title {
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: #1c1e21;
  line-height: 1.3;
}

.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px 24px;
  border: 1px solid #ccd0d5;
  border-radius: 50px;
  background: #ffffff;
  font-size: 15px;
  font-weight: 400;
  color: #1c1e21;
  cursor: pointer;
  transition: background-color 0.1s;
  margin-bottom: 10px;
  font-family: inherit;
}

.login-btn:hover {
  background: #f5f6f7;
}

.login-btn img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.create-account {
  display: block;
  text-align: center;
  color: #1c1e21;
  font-size: 14px;
  font-weight: 400;
  margin-top: 16px;
  text-decoration: none;
  line-height: 1.4;
}

.create-account:hover {
  text-decoration: underline;
}

.divider {
  height: 1px;
  background: #dadde1;
  margin: 24px 0;
}

.managed-account {
  display: block;
  text-align: center;
  color: #65676b;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  line-height: 1.4;
}

.managed-account:hover {
  text-decoration: underline;
}

.card-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.card-footer img {
  width: 24px;
  height: 16px;
}

.card-footer span {
  font-size: 18px;
  font-weight: 700;
  color: #1c1e21;
}

/* Responsive */
@media (max-width: 1000px) {
  .left-section {
    padding: 40px 40px;
  }
}

@media (max-width: 900px) {
  .page-container {
    flex-direction: column;
  }

  .left-section {
    padding: 60px 24px;
    justify-content: center;
  }

  .left-content {
    max-width: 100%;
  }

  .main-title {
    font-size: 32px;
    line-height: 40px;
  }

  .right-section {
    width: 100%;
    padding: 40px 24px;
  }

  .login-card {
    max-width: 400px;
    margin: 0 auto;
  }
}
