body {
  font-family: Arial, sans-serif;
  background: #f0f2f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  display: flex;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  width: 600px;
}

.left {
  background: linear-gradient(to bottom, #7857ff, #2e2be9);
  color: white;
  text-align: center;
  padding: 40px;
  width: 50%;
}

.circle {
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  padding: 30px;
  margin: 20px auto;
  width: 120px;
  height: 120px;
}

.right {
  padding: 40px;
  width: 50%;
}

.item {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: #f5f5f5;
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 20px;
  background: #303b5a;
  color: white;
  cursor: pointer;
}
