* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Layout split */
.split-container {
  display: flex;
  height: 100vh;
}

/* Left side: login */
.login-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f4f4f4;
}

/* Social login content */
.social-login {
  text-align: center;
  width: 100%;
  max-width: 350px;
}

.social-login h2 {
  margin-bottom: 10px;
  font-size: 32px;
}

.social-login p {
  margin-bottom: 30px;
  color: #555;
}

button {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.google-btn {
  background-color: #fff;
  border: 1px solid #ddd;
}

.apple-btn {
  background-color: #09d9ff;
  color: white;
}

.more-btn {
  background-color: #24292e;
  color: white;
}

button img {
  height: 20px;
}

/* Right side: image */
.image-side {
  flex: 1;
  overflow: hidden;
}

.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

