

body {
	background: rgba(0, 255, 24, 0.1);
	#background: linear-gradient(270deg, #CCCCCE, #EEEEEE);
	#background-size: 400% 400%;
	#animation: gradient 5s ease infinite;
}
  /* Asigurăm că containerul ocupă tot viewportul și gestionează corect scroll-ul */
  .vh-100 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .full-height-row {
    flex: 1; /* face rândul să umple spațiul disponibil */
  }

  /* Pentru imaginea cu text peste ea */
  .image-text-wrapper {
    position: relative;
    display: inline-block;
  }

  .image-text-wrapper h1 {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00FF18;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    white-space: nowrap;
  }

  /* Pe mobil, coloanele să fie una sub alta */
  @media (max-width: 767.98px) {
    .row.h-100 {
      flex-direction: column;
    }
    .col-md-6 {
      max-height: none !important; /* eliminăm eventuale restricții */
      flex: none !important;
    }
  }
   .btn-google {
    background: linear-gradient(45deg, #ea4335, #c23321);
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(234, 67, 53, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
  }
  .btn-google:hover {
    background: linear-gradient(45deg, #c23321, #a12a1a);
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(234, 67, 53, 0.6);
  }
  .btn-facebook {
    background: linear-gradient(45deg, #3b5998, #2d4373);
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(59, 89, 152, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
  }
  .btn-facebook:hover {
    background: linear-gradient(45deg, #2d4373, #22345a);
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(59, 89, 152, 0.6);
  }
  
   .navbar-custom {
	background: linear-gradient(-45deg, #202E31, #00FF18);
	background-size: 100% 100%;
	animation: gradient 10s ease infinite;
    padding: 15px 10px;    
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
	box-shadow: 15px 15px 15px grey;
	color: white;
	transition: all 0.3s ease-in-out;
	font-weight: bold;
}

.navbar-custom a:hover {
  color: #00FF18;
  text-decoration: underline;
}
@-webkit-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}
@-moz-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}
@-ms-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}
@keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}
a,
a {
  color: #00703C;
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  color: #004d2a;
  text-decoration: underline;
}
a:focus {
  color: #999;
}
pagination {
	
}
.main-footer {
  background: linear-gradient(-45deg, #596A4E, #202E31);
  background-size: 400% 400%;
  animation: gradient 10s ease infinite;
  box-shadow: 15px 15px 15px grey;
  border-radius: 0;
  color: white;
}

.main-footer a:hover {
  color: #2FFF00;
  text-decoration: underline;
}

@keyframes gradient {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.content-highlight {
  background: rgba(0, 255, 24, 0.1);
  box-shadow: 0 4px 12px rgba(0, 255, 24, 0.3);
  border-radius: 12px;
  padding: 2rem;
}

/* Efect container general + perspectivă */
.container-login {
  box-shadow: 0 0 10px rgba(0, 255, 24, 0.3);
  perspective: 1200px;
}

/* Gradient doar pe desktop (efect carte deschisă) */
@media (min-width: 768px) {
  .bg-light-gradient {
    background: linear-gradient(
      to right,
      #ffffff 0%,
      #ffffff 40%,
      #d0d0d0 50%,
      #606060 100%
    );
  }

  .bg-white-gradient {
    background: linear-gradient(
      to left,
      #ffffff 0%,
      #ffffff 40%,
      #d0d0d0 50%,
      #606060 100%
    );
  }

  .left-page {
	   border-top-left-radius: 40px 20px; 
    transform-origin: right center;
    transform: rotateY(10deg);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);	
	
  }


  .right-page {
	   border-top-right-radius: 40px 20px;
    transform-origin: left center;
    transform: rotateY(-10deg);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  }

}

/* Eliminăm efectele pe mobil (sub 768px) */
@media (max-width: 767.98px) {
  .left-page,
  .right-page {
    transform: none !important;
    box-shadow: none !important;
  }
}
