body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #081023;
}

.game-container {
    text-align: center;
    margin-top: 20px;
    color:white;
}

/* main menu */





.auth-container {
    display: flex;
    min-height: 100vh; /* full screen */
}

.auth-left {
    width: 50%;
    height:auto;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-right {
    width: 50%;
    position: relative;
    overflow: hidden;
    cursor: pointer; /* cursor jadi tangan */
}

.auth-image {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

/* zoom effect saat hover */
.auth-right:hover .auth-image {
    transform: scale(1.05);
}

.forgot-password{
    margin-top:15px;
    text-align:center;
    font-size:14px;
}

.forgot-password span{
    color:#1e88e5;
    cursor:pointer;
}

.forgot-password span:hover{
    text-decoration:underline;
}

/* overlay text */
.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* supaya klik tetap ke parent */
    text-align: center;
}

.image-overlay h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.auth-left h2 {
    margin-bottom: 30px;
    color:#081023;
    font-size: 22px;
    letter-spacing: 1px;
}

.auth-left label {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 5px;
    display: block;
}

.auth-left input {
    width: 80%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.btn-primary {
    margin-top: 15px;
    padding: 14px;
    border: none;
    border-radius: 6px;
    background: #2e7d32;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;

    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%; /* optional supaya lebih proporsional */
}

.btn-primary:hover {
    background: #1b5e20;
}

.link-text {
    margin-top: 20px;
    color: #081023;
    font-size: 14px;
    text-align: center;
}

.link-text span {
    color: #2e7d32;
    cursor: pointer;
    font-weight: bold;
}

.info-section {
  padding: 60px 10%;
  background: #f5f7f9;
}

/* STATS */
.stats-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
  margin: 10px 0;
}

.stat-image {
    width: 50%;
    height: 50%;
    transition: transform 0.4s ease;
}

.stat-item h2 {
  font-size: 36px;
  margin-bottom: 5px;
  color: #1a7f37;
}

.stat-item p {
  font-size: 14px;
  color: #777;
}

/* GRID FITUR */

.info-section {
  padding: 60px 10%;
  background: #f5f7f9;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 80px; 
  margin-bottom: 60px;
}


.info-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card img {
  width: 100%;
  border-radius: 8px;
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #081023;
}

.info-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

 .footer {
    width:100%;
    margin-top:20px;
    text-align:center;
    color:#000;
    display:flex;
    justify-content:center;
    align-items:center;
}
        
@media (max-width:768px){

.auth-container{
display:flex;
flex-direction:column !important;
}

.auth-left,
.auth-right{
width:100% !important;
}

.auth-right{
order:1;
}

.auth-left{
order:2;
padding:25px 25px;
}

.auth-image{
width:100%;
height:auto;
display:block;
}

}


@media (max-width:1000px){
.info-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media (max-width:600px){
.info-grid{
grid-template-columns:1fr;
}
}

.honeypot-field{
    display:none;
}