/* Reset base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #302eb6; /* blu scuro Nexi */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}


/* Box centrale bianco */
.container {
    background: #fff;
    border-radius: 20px;
    padding: 5%;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Logo */
.logo {
    width: 40%;
    margin: 0 auto 20px;
}

/* Titolo principale */
h1 {
    font-size: 1.6rem; /* prima era 1.4rem */
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

/* Paragrafi */
p {
    font-size: 1.1rem; /* prima era 1rem */
    color: #4a4a4a;
    margin-bottom: 20px;
}

    p strong {
        color: #2D2AFA;
        font-weight: bold;
    }

/* Bottoni */
button {
    font-size: 1.1rem; /* prima era 1rem */
}


/* Bottoni */
button {
    width: 100%;
    padding: 12px 0;
    background-color: #2D2AFA;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

    button:hover {
        background-color: #1c1abe;
    }

/* Banner in fondo */
.banner {
    font-size: 0.85rem;
    color: #ffffff;
    margin-top: 30px;
    text-align: center;
}


button {
    background-color: #302eb6;
}

    button:hover {
        background-color: #1f1e84;
    }
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5%;
    box-sizing: border-box;
}

.loader-gif {
    width: 30%;
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
}
