
.popup-button {
    padding: 10px 20px;
    background-image: linear-gradient(to right,rgb(0, 92, 197), rgb(90, 20, 220));
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 5px;
}
.popup-button:hover {
    background-color: #0056b3;
}

.input-hide
    {
        display: none;
    }

.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: rgba(3, 1, 41, 0.7);
    color: white;
    padding: 40px;
    border-radius: 5px;
    width: 300px;
    margin: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.popup-form {
    display: flex;
    flex-direction: column;
}

.popup-input
    {
        background-color: white;
        text-align: center;
    }

.popup-label {
    margin-top: 10px;
    margin-bottom: 5px;
    background-color: white;
}

