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

body, html {
  font-family: 'Outfit', sans-serif;
  background-color: #f5f7fa;
}

.header {
  display: flex;
  align-items: stretch;
  height: 100px;
  background: linear-gradient(135deg, #6c63ff, #4ea8de);
  padding: 0;
}

.header img {
  height: 100%;
  width: auto;
  display: block;
}

.livi {
  display: flex;
  gap: 40px;
  padding: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: #ffffff;
}

.liviimg img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid #4ea8de;
  transition: transform 0.3s ease;
}

.liviimg img:hover {
  transform: scale(1.05);
}

.livitxt {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.livitxt h1 {
  font-size: 48px;
  color: #2b2d42;
}

.livitxt p {
  font-size: 18px;
  color: #4a4e69;
}

.cta-button,
#sendButton {
  background-color: #6c63ff;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.cta-button:hover,
#sendButton:hover {
  background-color: #4ea8de;
  transform: translateY(-2px);
}

.login-form {
  background-color: #ffffff;
  padding: 40px;
  margin: 40px auto;
  width: 90%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.login-form h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.login-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-form input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 100%;
}

.login-form a {
  color: #6c63ff;
  text-decoration: none;
}

.login-form a:hover {
  text-decoration: underline;
}

.chatbox-container {
  background-color: #eef2f7;
  padding: 50px 20px;
  text-align: center;
}

.chatbox-container h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #2b2d42;
}

#chatbox {
  width: 100%;
  max-width: 600px;
  height: 300px;
  margin: 0 auto 20px;
  border: 2px solid #6c63ff;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px;
  overflow-y: auto;
  text-align: left;
}

.chat-input {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

#userInput {
  padding: 10px;
  width: 300px;
  font-size: 16px;
  border: 1px solid #6c63ff;
  border-radius: 8px;
}

.footer {
  background-color: #f5f5f5;
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #ddd;
  font-family: 'Outfit', sans-serif;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.socials img {
  width: 32px;
  margin: 0 10px;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.socials img:hover {
  transform: scale(1.1);
}

.footer-logo {
  width: 100px;
  margin-top: 10px;
}

