
body {

    font-family: "SUSE", sans-serif;
    align-items: center;
}

.box{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

}

form {
    width: 50%;
}


fieldset {
    background-color: white;
    width: 100%;
    align-items: center;
    border-radius: 2vh;
    display: flex;
    flex-direction: column;
}

fieldset legend {
    font-family: "SUSE", sans-serif;
    text-align: center;
    font-weight: 900;
    font-size: 50px;
    color: #29246b;
    width: max-content;
}


#div-submit {
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    padding-top: 33px;
    gap: 10px; 
}


.button-alt {
    appearance: none;
    background-color: #29246b;
    border: solid #29246b;
    border-radius: 15px;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-family: "SUSE", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 60px;
    min-width: 110px;
    outline: none;
    padding: 16px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
    will-change: transform;
}

.button-alt:disabled {
    pointer-events: none;
}

.button-alt:hover {
    color: white;
    background-color: #29246b;
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
    border: solid #29246b;
}

.button-alt:active {
    box-shadow: none;
    transform: translateY(0);
}

.input-texto {
    width: 100%;
    border: none;
    border-bottom: 1px solid #999;
    padding: 6px 30px;
    font-family: "SUSE", sans-serif;
    font-weight: 400;
    box-sizing: border-box;
}

#div-buttons img{
width: 150%;
}

#div-buttons button {
    border: none;
    background-color: white;
    cursor: pointer;
}


/* Media Queries para Responsividade */

@media (max-width: 768px) {
    .box {
        width: 90%; 
        padding: 10px;
    }

    form {
        width: 100%;
    }

    fieldset legend {
        font-size: 1.8rem; 
    }

    .input-texto {
        padding: 8px 15px; 
        font-size: 0.9rem; 
    }

    .button-alt {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    #div-buttons img {
        width: 80%; 
    }
}

@media (max-width: 480px) {
    .box {
        width: 100%; 
        padding: 5px;
    }

    fieldset legend {
        font-size: 1.5rem; 
        text-align: center;
    }

    .input-texto {
        padding: 6px 10px; 
        font-size: 0.8rem; 
    }

    .button-alt {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    #div-buttons {
        flex-direction: column; 
        gap: 10px; 
        align-items: center;
    }

    #div-buttons img {
        width: 60%; 
    }
}
