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

body, html {
  height: 100%;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.split-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
}

.left, .right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.left {
  background: linear-gradient(135deg, #001d43, #07428f);
  clip-path: polygon(0 0, 35% 0, 65% 100%, 0% 100%);
  z-index: 2;
}

.right {  
  background: linear-gradient(135deg, #e0ad00, #bb8f00);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 65% 100%);
  z-index: 1;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.right .content {
  color: #1b2a44;
}

.logo {
  max-height: 80px;
  margin-bottom: 20px;
}

h1 {
  font-size: 26px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid white;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.right .btn {
  color: #1b2a44;
  border-color: #1b2a44;
  background: rgba(255, 255, 255, 0.3);
}

.btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* Mobil */
@media (max-width: 768px) {
  .split-wrapper {
    flex-direction: column;
  }
  .left, .right {
    clip-path: none;
    height: 50%;
    width: 100%;
    position: relative;
  }
}


.left .content {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.right .content {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #1b2a44;
}


