body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

@keyframes fromtheleft {
      
    from {
        transform: translateX(-150%);

      }
      to {
        transform: translateX(0);
       
      }
}

.container {
    background: white;
    max-width: 500px;
    margin: auto;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    animation: fromtheleft 3s ease-in-out;
    
}

.container-logo {
    text-align: center;
    margin-top: 5vh;

}

@keyframes fadeIn {
      
    from {
        opacity: 0;
    }
    
    to {
        opacity: 1;
    }
    
} 

.container-logo img {
    height: 300px;
    width: 300px;
    animation: fadeIn 3s ease-in-out;
    -webkit-animation: fadeIn 3s ease-in-out;
}

input[type="number"],
input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;

}
    
input {
    margin-bottom: 1vh;
    
}
  
    
button {
    margin-top: 20px;
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    
}
    
button:hover {
    background: #0056b3;
    
}
    
.result {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    
}
