


/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #ffffff; /* Light grey background */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.mobile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  width: 100%;
  max-width: 300px;
}

/* Images with FOUR-SIDES Gradient Fade */
.top-image {
  width: auto;
  height: 570px;

  position: relative;
  object-fit: cover;
  margin-bottom: 0px;
  /* Adjusted to reduce fade - now starts at 5% and ends at 95% */
  -webkit-mask-image: 
    linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: 
    linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-composite: intersect;
}


.bottom-image{
  width: 350px;
  height: auto;

  position: relative;
  object-fit: cover;
  margin-bottom: 10px;



 }


/* Login Button (unchanged) */
.login-button {
  width: 160px;
  padding: 9px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}
