body, html {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  padding-bottom: env(safe-area-inset-bottom);
  font-family: 'Nunito', sans-serif; 
}

.split-container {
  display: flex;
  height: 100vh;
  width: 100vw;
  position: relative;
}

/* LEFT IMAGE SECTION */
.left-side {
  flex: 1;
  position: relative;
  overflow: hidden;
  }

.left-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
  animation: kenBurns 30s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes kenBurns {
  0% { background-size: 110%; background-position: center; }
  100% { background-size: 120%; background-position: center top; }
}

.left-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  height: 100%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
  
  animation: fadeIn 2s ease-in-out;
}

.left-overlay img {
  height: 60px;
  margin-bottom: 20px;
	
}

.left-overlay p {
  font-size: 16px;
  margin-top: 10px;
  color: #ccc;
  text-shadow: 0px 2px 2px #000;
}

/* LOGIN SECTION */
.right-side {
  flex: 1;
  /*background: linear-gradient(to bottom, #3A6B7F, #254F5F, #18343F);*/
  border-left: 1px solid rgba(255,255,255,0.5);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.divLogin {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 20px;
   box-shadow:
    0 0 20px rgba(0,255,200,0.05),
    0 0 5px rgba(0,255,200,0.1),
    0 0 0 1px rgba(255,255,255,0.06);
  width: 350px;
  max-width: 90%;
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
}

.divLogin::before {
  content: "flexCore <3";
  font-size: 24px;
  display: block;
  text-align: center;
  margin-bottom: 20px;
  color: #00cc99;
}

input {
  background-color: rgba(255,255,255,0.1);
  color: white;
}	
	
input[type="submit"] {
  background-color: #006a82;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

input[type="submit"]:hover {
  background: linear-gradient(135deg, #00cc99, #007766);
  transform: scale(1.02);
  transition: 0.3s ease-in-out;
  color: white;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
	
.login-header-mob {
  display: none;
  text-align: center;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;	
}

.logoMob {
  height: 50px;
  margin-bottom: 10px;
}

.claimMob {
  font-size: 14px;
  color: #ccc;
  margin: 0 auto;
  text-shadow: 0 1px 2px #000;
}

@media (max-width: 768px) {	
  .login-header-mob {
    display: block;
	margin-bottom: 0;
	padding-top: 20px;
	padding-bottom: 10px;
	animation-delay: 0.4s;
	}	
  .split-container {
    flex-direction: column;
  }

  .left-side {
    display: none;
  }

  .right-side {
	  min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 20px;
	padding-left: 15px;
    padding-right: 15px;
	flex-direction: column;
    gap: 20px; 
	  border-left: 0px solid rgba(255,255,255,0.5);
	  
  }

   .divLogin::before {
    display: none;
  }

  .divLogin {
    margin-top: 20px;
    margin-bottom: 40px; /* <-- aggiunto spazio in fondo */
    width: 90%;
    max-width: 340px;
  }	
	
}