.overlay {
    z-index: 2;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(5px);
}

.overlay.visible {
    display: flex;
}

.overlay > div {
    display: flex;
    width: 100%;
    max-width: 30rem;
    padding: 1rem;
    flex-direction: column;
    justify-content: center;
    row-gap: 1rem;
    background: #191919;
    border-radius: 0.5rem;
}

.overlay .inputs {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.overlay .input-container {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
}

.overlay .buttons {
    width: 100%;
    display: flex;
    column-gap: 1rem;
}

.overlay .buttons button {
    flex-grow: 1;
}
