/* Reset dan styling dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background: linear-gradient(135deg, #ff69b4 0%, #9370db 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .right-content {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 22px;
  }

  .subtitle {
    font-size: 16px;
  }
}

/* Styling untuk konten kiri */
.left-content {
  flex: 1;
  text-align: center;
}

.logo-container {
  margin-bottom: 20px;
}

.logo {
  width: 200px;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.main-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: normal;
}

.description {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  line-height: 1.6;
  text-align: center;
}

.highlight {
  font-weight: bold;
  color: #ffcc00;
}

/* Styling untuk konten kanan */
.right-content {
  flex: 1;
  max-width: 450px;
}

.card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-header {
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: #f8f8f8;
  position: relative;
}

.card-logo {
  width: 50px;
  height: 25px;
  border-radius: 8px;
  margin-right: 10px;
  object-fit: cover;
}

.card-title {
  color: #333;
  font-weight: bold;
  font-size: 16px;
  flex-grow: 1;
}

.card-title i {
  color: #ff6b00;
  margin-right: 5px;
}

.share-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  cursor: pointer;
}

.login-register-buttons {
  padding: 20px 20px 10px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 5px;
}

@media (max-width: 480px) {
  .login-register-buttons {
    flex-direction: column;
  }
}

.card-buttons {
  padding: 10px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn i {
  margin-right: 10px;
}

.btn-login {
  background: linear-gradient(45deg, #4a90e2 0%, #1e50a2 100%);
  flex: 1;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-register {
  background: linear-gradient(45deg, #ff9d00 0%, #ff6b00 100%);
  flex: 1;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-whatsapp {
  background-color: #25d366;
}

.btn-email {
  background-color: #ea4335;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
