/* 🌟 Stili di base per start.php */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #ffecd2, #eb769f);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

/* 🎨 Animazione sfondo */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 📌 Contenitore del logo e pulsante */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    animation: logoAnimation 3s ease forwards;
    text-align: center;
}

/* 🖼️ Animazione del logo */
@keyframes logoAnimation {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* 📌 Dimensionamento corretto del logo */
.logo-container img {
    width: 150px;  /* Imposta una dimensione fissa */
    max-width: 90%; /* Evita che diventi troppo grande su schermi piccoli */
    height: auto;
    margin-bottom: 20px;
}

/* 🔘 Stile del pulsante */
.logo-container button {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.logo-container button:hover {
    background-color: #0056b3;
}

/* Stile per il pulsante Accedi */
.btn-login {
    display: inline-block;
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none; /* Rimuove la sottolineatura */
}

.btn-login:hover {
    background-color: #0056b3;
}

