* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    background: url('./images/fundo.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
}

footer {
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

h1 {
    font-size: 2.5em;
    color: #31ff00;
}

p {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    
}

input {
    font-family: 'Poppins', sans-serif;
    padding: 10px;
    font-size: 1em;
    border: none;
    border-bottom: 2px solid #31ff00;
    outline: none;
    background-color: transparent;
    margin-bottom: 20px;
    width: 100%;
}

button {
    font-family: 'Poppins', sans-serif;
    padding: 10px;
    background-color: rgba(255, 255, 255, 1.0);
    color: #371f45;
    font-size: 1.0em;
    margin: 0 auto;
    width: 25%;
    border: 3px solid #31ff00;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #28cc00;
    color: white;
    border: 3px solid white
}

.container {
    width: 100%;
    max-width: 50vw;
    padding: 20px;
}

.form-box {
    padding: 80px;
    border-radius: 20px;
    border: 3px solid #31ff00;
    text-align: center;
    background-color: rgba(255, 255, 255, 1.0); 
    margin: 0 auto;
    margin-top: 200px;
    height: 550px;    
}

.drawer-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 10px;
    border-radius: 20px;
    border: 3px solid #31ff00;
    text-align: center;
    background-color: rgba(255, 255, 255, 1.0); 
    margin: 0 auto;
    margin-top: 200px;
    height: 550px;    
}

.drawer-box input {
    text-align: center;
    width: 100px;
}

.drawer-box h1 {
    color: #371f45;
}

.drawer-box ul {
    align-items: center;
    list-style: none;
    margin-top: 20px;
    margin-right: 15%;
    padding: 0;
}

.drawer-box li {
    position: relative;
    align-items: center;
    text-align: center;
    padding: 5px 0 5px 100px;    
    font-size: 20px;
    color: #333;
}

.drawer-box li::before {
    color: #333;
    content: '';
    position: absolute;    
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('/images/pumpkin.png');
    background-size: contain;
    background-repeat: no-repeat;
}

#loading {
    display: none;
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #31ff00;
    --_m: 
        conic-gradient(#0000 10%,#000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
            mask: var(--_m);
    -webkit-mask-composite: source-out;
            mask-composite: subtract;
    animation: l3 1s infinite linear;
}
@keyframes l3 {to{transform: rotate(1turn)}}

.footer-content img {
    height: auto; 
    margin: 0 auto;
    margin-top: 10px;
    display: block; 
}

@media (max-width: 425px) {
    
    .container {
        max-width: 90vw;
    }

    .form-box {
        width: 100%;
        font-size: 40px;
    }

    button {
        width: 50%;
    }

    body {
        background-position: center center;
    }

    .footer-content img {
        width: 120px;
    }
}

@media (max-width: 1440px) {
    .form-box {
        padding: 20px;
        width: 100%;
        height: 100%;
    }

    form input,
    form button {
        font-size: 14px;
        padding: 12px;
    }

    body {
        
        background-position: top;
    }

    .footer-content img {
        width: 120px;
    }
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.label-message {
    font-family: 'Poppins', sans-serif;
    display: none;
}