body {
  background: linear-gradient(to right, rgb(145, 145, 255), rgb(255, 133, 133));
  display: flex;
  justify-content: center; 
  align-items: center;  
  height: 100vh;           
  margin: 0;    
  animation: fadeIn 1s ease-out;
}

.btna {
position: fixed;
top: 20px;
right: 20px;
z-index: 1000;
animation: slideInTop 0.5s ease-out;
}

.btna button {
padding: 10px 20px;
border-radius: 8px;
border: none;
background-color: #3498db;
color: white;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.3s ease;
}

.btna button:hover {
background-color: #2980b9;
transform: scale(1.1); /* Slightly enlarge on hover */
}

input[type="text"] {
  width: 200px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-shadow: #000 0px 5px 15px 0px;
  backdrop-filter: blur(10px);
  animation: slideInFromLeft 0.7s ease-out;
}

input[type="date"] {
  width: 200px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-shadow: #000 0px 5px 15px 0px;
  backdrop-filter: blur(10px);
  margin: 3%;
  font-family: Arial, Helvetica, sans-serif;
  animation: slideInFromRight 0.7s ease-out;
}

.input-container button {
  border-radius: 15%;
  margin: 3%;
  background-color: #fff;
  border: none;
  font-size: 30px;
  height: 30px;
  width: 50px;
  cursor: pointer;
  animation: bounce 1s infinite;
}

.input-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
border: 4px solid #fff;
background-color: rgb(255, 255, 255);
padding: 20px;
height: 200px;
width: 320px;
border-radius: 15px;
box-shadow: #000 0px 5px 15px 0px;
backdrop-filter: blur(10px);
animation: fadeInUp 1s ease-out;
}

.input-container h1 {
color: #000; 
font-size: 35px; 
margin-bottom: 20px;
font-family: Arial, Helvetica, sans-serif;
text-shadow: #000 0px 5px 15px 0px;
}

@keyframes pulse {
0% {
  transform: scale(1);
}
50% {
  transform: scale(1.05);
}
100% {
  transform: scale(1);
}
}

.menu {
border-radius: 15%;
margin: 3%;
background-color: #fff;
border: none;
font-size: 30px;
height: 50px;
width: 50px;
position: relative;
top: 10px;
left: 5px;
box-shadow: #000 0px 5px 15px 0px;
backdrop-filter: blur(10px);
display: flex;
justify-content: center;
align-items: center;
animation: pulse 2s infinite;
transition: transform 0.5s ease, left 0.5s ease;
}

.menu:hover {
transform: translateX(20px);
}

.menu p {
font-size: 30px;
color: #000; 
font-family: Arial, Helvetica, sans-serif;
text-shadow:  #000 0px 5px 15px 0px;
display: flex;
justify-content: center;
align-items: center;
}

/* Animations */

/* Fade-in effect for the body */
@keyframes fadeIn {
from {
  opacity: 0;
}
to {
  opacity: 1;
}
}

/* Slide-in pour le boutton*/
@keyframes slideInTop {
from {
  transform: translateY(-100%);
  opacity: 0;
}
to {
  transform: translateY(0);
  opacity: 1;
}
}

/* Slide-in de la gauche pour l'input*/
@keyframes slideInFromLeft {
from {
  transform: translateX(-100%);
  opacity: 0;
}
to {
  transform: translateX(0);
  opacity: 1;
}
}

/* Slide-in de la droite pour l'input*/
@keyframes slideInFromRight {
from {
  transform: translateX(100%);
  opacity: 0;
}
to {
  transform: translateX(0);
  opacity: 1;
}
}

/*Fade In pour l'input container*/
@keyframes fadeInUp {
from {
  transform: translateY(100%);
  opacity: 0;
}
to {
  transform: translateY(0);
  opacity: 1;
}
}

/* Bounce pour le bouton*/
@keyframes bounce {
0%, 100% {
  transform: translateY(0);
}
50% {
  transform: translateY(-10px);
}
}


@keyframes slideInRight {
  from {
    transform: translateX(100%); 
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}







