/* PerCorsi — pagina dismissione + verifica certificato */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    background-color: #d2d6de;
}

.page {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.brand img {
    max-width: 70px;
    height: auto;
}

.brand p {
    font-size: 20px;
    font-weight: 500;
}

.color_main {
    color: #CB261C;
}

/* Card */
.card {
    background: rgba(255, 255, 255, .9);
    padding: 24px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.card h3 {
    color: #CB261C;
    margin-bottom: 12px;
    font-weight: 600;
}

.card .msg {
    text-align: center;
    margin-bottom: 20px;
    color: #67757c;
}

/* Form */
.card form input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    font: inherit;
    border: 1px solid #d2d6de;
    border-radius: 4px;
    outline: none;
}

.card form input[type="text"]:focus {
    border-color: #CB261C;
}

.card form button {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 10px 16px;
    font: inherit;
    font-weight: 500;
    color: #fff;
    background-color: #00c0ef;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.card form button:hover {
    background-color: #00acd6;
}

/* Footer */
.legal {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #888;
}

.legal a {
    color: #888;
    text-decoration: none;
}

.legal a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .brand {
        flex-direction: column;
        gap: 12px;
    }
    .brand p {
        font-size: 18px;
    }
}
