/* Base styles */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: white;
}

/* Page layout */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}

/* LinkedIn logo */
.logo {
  width: 45px;
  height: auto;
  margin-bottom: 30px;
}

/* Card styling */
.card {
  background-color: white;
  width: 360px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Heading */
h2 {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 600;
}

/* Google & Apple buttons */
.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: Arial, sans-serif;
  color: #3c4043;
  background-color: #fff;
  border: 1px solid #dadce0;
  border-radius: 999px; /* pill shape */
  padding: 10px 24px;
  cursor: pointer;
  width: 100%;
  height: 40px;
  margin-bottom: 12px;
  transition: background-color 0.2s ease;
}

.social-button img {
  height: 18px;
}

.social-button:hover {
  background-color: #f7f8f8;
}

/* Divider line */
.divider {
  text-align: center;
  margin: 16px 0;
  position: relative;
  font-size: 13px;
  color: #666;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ccc;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

/* Input fields */
input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

/* Actions below inputs */
.actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 16px;
}

.actions a {
  text-decoration: none;
  color: #0a66c2;
}

/* Primary sign in button */
button.signin {
  width: 100%;
  padding: 12px;
  background-color: #0a66c2;
  color: white;
  border: none;
  border-radius: 24px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
}

button.signin:hover {
  background-color: #004182;
}

/* Footer link */
.footer {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
}

.footer a {
  color: #0a66c2;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
