:root {
    --bg: #fe8300;
}

body {
    background-color: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: sans-serif;
    overflow: hidden; /* Impedisce lo scroll */
}

.title {
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.title h1 {
    font-size: 2em;
    border-bottom: solid 1px;
    margin: 0 25vw 10px;
}

.title h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.title p {
    font-size: 1em;
    padding: 0 20px; /* Aggiunto padding per spaziatura laterale */
}

section {
    padding: 30px;
    width: 90%;
    max-width: 400px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

input[type="text"] {
    width: calc(100% - 10px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
}

button[type="submit"] {
    background-color: var(--bg);
    color: white;
    padding: 12px 20px;
    border: solid 1px white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    width: 100%;
}

button[type="submit"]:hover {
    transition: .5s;
    background-color: white;
    color: var(--bg)
}

.not-active {
    opacity: 0;
}
.active {
    transition: 1s;
    opacity: 1;
}