body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121826;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  background-color: white;
  padding: 3rem 4rem;
  border-radius: 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 3rem;
  max-width: 900px;
  width: 100%;
}

.left {
  flex: 1;
}

.right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 0.75rem;
}

.brand span {
  font-size: 1.3rem;
  font-weight: bold;
  color: #0f172a;
}

.text-section h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.text-section span {
  color:  #8b5cf6;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

.form-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #0f172a;
}

.input-group {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.input-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #0f172a;
}

.input-group input {
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  width: 100%;
  box-sizing: border-box;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
}

.btn img {
  width: 24px;
  height: 24px;
}

.btn.login{
  background-color:  #8b5cf6;
  color: white;
  font-weight: bold;
}
.btn.login:hover {
    background: linear-gradient(90deg, #a855f7, #6b21a8);
}

.btn.facebook {
  background-color: #1877f2;
  color: white;
}

.btn.google {
  background-color: white;
  color: #5f6368;
  border: 1px solid #dadce0;
}

.btn.apple {
  background-color: black;
  color: white;
}

.divider {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin: 0.4rem 0;
  font-weight: bold;
  text-transform: uppercase;
}

/* .social-buttons container already using flexbox */
.social-buttons {
    
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.signup-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.signup-row .btn {
  background-color: #4CAF50;  /* Green background for the Sign Up button */
  color: white;
  font-weight: bold;
  width: 100%;
  max-width: 200px; /* Ensuring it's a reasonable width */
}

.signup-row .btn:hover {
  background-color: #45a049;
}

