
.popup-button {
	padding: 12px 22px;

	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.5px;

	color: white;
	background: #1f2937;

	border: none;
	border-radius: 6px;

	cursor: pointer;
	margin-top: 8px;

	transition: all 0.2s ease;
}

.popup-button:hover {
	background: #111827;
	transform: translateY(-1px);
}

.popup-button:active {
	transform: translateY(0);
}

.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;
}

