.overlay-login {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 450px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.overlay-login.active {
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.overlay-content-login {
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    overflow: hidden;
}

.overlay-content-login label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.overlay-content-login h2 {
    text-align: center;
}

.overlay-content-login input[type="text"],
.overlay-content-login input[type="password"] {
    width: 95%;
    height: 25px;
    margin: 5px;
    border-radius: 4px;
    flex: 1;
    padding: 3px;
    border: 1px solid #999;
    background: white;
    box-shadow: 0px 1px 1px rgba(0,0,0,0.3);
}

.overlay-content-login input[type="button"] {
    margin: 10px;
    padding: 5px 15px;
    border: none;
    border-radius: 4px;
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    cursor: pointer;
    position: absolute;
    bottom: 1%;
    left: 50%;
    transform: translate(-50%, 0%);
}
.overlay-content-login input[type="button"]:hover {
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.overlay-content-login input[type="button"]:active {
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.2);
}

.overlay-content-login a {
    display: block;
    margin-top: 10px;
    color: #007BFF;
    text-decoration: none;
    font-size: 12px;
    text-align: right;
    margin-right: 15px;
    transform: translate(0,5px);
}

.content {
    margin: 10px;
}


