* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f0f2f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  display: flex;
  width: 900px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.panel {
  flex: 1;
  padding: 50px;
  text-align: center;
}

.left-panel {
  background: #f7f9fc;
}

.right-panel {
  background: #fefefe;
}

h2 {
  margin-bottom: 15px;
  font-size: 26px;
  font-weight: bold;
  color: #333;
}

p {
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
}

.social-icons {
  margin-bottom: 15px;
}

.social-icons a {
  display: inline-block;
  margin: 0 8px;
}

.social-icons img {
  width: 28px;
  height: 28px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input {
  width: 80%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 25px;
  outline: none;
}

.btn {
  margin-top: 20px;
  padding: 12px 35px;
  background: #4d5dfb;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(77, 93, 251, 0.3);
  transition: 0.3s ease;
}

.btn:hover {
  background: #3646d2;
}

.small {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}
