/* Estilização do popup */
#popup{
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;


}

#popup::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
}



#popup[open]{
    opacity: 1;
    visibility: visible;
}

.popup-container {
    position: flex;
    min-height: 250px;
    min-width: 402px;
    height: 40vh;
    width: 30vw;
    max-width: 600px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    align-self: center;
    justify-self: center;
}

.popup {
    justify-content:center;
    height: 100%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.close-btn {
    color: rgba(160, 0, 0, 0.5);
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
}

.input-field {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#save_auth {
    width: 30%;
    padding: 10px;
    background: blue;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

#save_auth:hover {
    background: darkblue;
    text-align: center;
}