.centered {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
display: none;
opacity: 0;
transition: opacity 0.4s ease;
background: rgb(0, 0, 0);
width: 100%;
height: 100%;
}

.centered.show {
display: flex;
flex-direction: column; /* Stack vertically */
align-items: center;     /* Center horizontally */
justify-content: center; /* Center vertically */
opacity: 1;
}

.form-wrapper {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column; /* Ensure form stacks vertically */
width: 100%;
}

.overlay-content {
position: relative;
width: 30%;
margin: 0 auto;
font-family: monospace;
}

::placeholder {
color: #f1f1f1c9;
font-family: monospace;
}

.overlay-content input[type=text] {
padding: 15px;
width: 100%;
background: #f1f1f1c9;
}

.overlay-content input[type=text]:focus {
outline: none;
}

.overlay-content input[type=text],
select,
textarea {
width: 100%;
padding: 12px;
box-sizing: border-box;
resize: vertical;
margin-top: 5px;
border: 0px solid #2a2a2a;
background: rgb(0, 0, 0);
color: white;
border-bottom: 1px solid #2a2a2a;
}

.btn{
border: none;
position: relative;
width: 50%;
float: left;
}

.overlay-content .btn {
color: white;
background: rgb(0, 0, 0);
padding: 16px 20px;
cursor: pointer;
margin-bottom: 5px;
opacity: 0.8;
font-family: monospace;
text-align: left;
border: 1px solid #2a2a2a;
}

.btn:hover {
background-color: #1f1f1f57;
}

.overlay-content input[type=text],
select,
textarea:focus {
outline: none;
background-color: none;
}

.btn:focus {
outline: white;
}

.link {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 1;
}

#logoholder{
margin: 0 auto;
margin-top: 100px;
margin-bottom: 10px;
width: 150px;
height: 150px;
background-size:contain;
background-position: center;
background-repeat: no-repeat;
background-image: url('/bird.png'); 
}

form {
margin-top: 10px;
/* border: 1px solid rgba(255, 255, 255, 0.3);  */
padding: 10px;                             
width: 100%;
margin: 0 auto;
overflow: hidden; 
}