* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  min-height: 100vh;
  background: url("fariss.jpg") no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: -1;
}

.container {
  width: 900px;
  max-width: 95%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  display: flex;
  overflow: hidden;
  color: #fff;
}

.left {
  flex: 1;
  padding: 40px;
}

.logo {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
}

.socials a {
  color: #fff;
  margin-right: 15px;
  font-size: 18px;
}

.right {
  flex: 1;
  padding: 40px;
  background: rgba(0,0,0,0.55);
}

.tabs {
  display: flex;
  margin-bottom: 25px;
}

.tabs button {
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.tabs button.active {
  border-color: #ff3b5c;
  color: #ff3b5c;
}

.tabs {
  position: relative;
  z-index: 2;
}

.tabs button {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

form {
  display: none;
}

form.active {
  display: block;
}

.input-group {
  margin-bottom: 20px;
  position: relative;
}

.input-group input {
  width: 100%;
  padding: 12px 40px 12px 10px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #aaa;
  color: #fff;
}

.btn {
  width: 100%;
  padding: 12px;
  background: #ff3b5c;
  border: none;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.nav-logo {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ff3b5c;
}

.nav-search {
  position: relative;
}

.nav-search input {
  padding: 6px 30px 6px 10px;
  border-radius: 20px;
  border: none;
  outline: none;
  font-size: 13px;
}

.nav-search i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
}

/* supaya konten tidak ketutup navbar */
body {
  padding-top: 80px;
}