body {
    background-color: #f8f9fa;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: black;
}

.login-container {
    max-width: 400px;
    margin: 0 auto;
    margin-top: 100px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.3);
    /* Added background color with transparency */
    backdrop-filter: blur(10px);
    /* Added backdrop-filter property */
    -webkit-backdrop-filter: blur(10px);
    /* Added vendor prefix for Safari compatibility */
    box-shadow: 0 0 20px rgba(0, 0, 0, 1);
    border-radius: 5px;
    /* Added border-radius property */
    position: relative;
    z-index: 1;
}

.image-author {
    position: fixed;
    bottom: 30px;
    right: 50px;
    font-size: 12px;
    color: black;
    opacity: 0.8;
    text-align: right;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.5);
    /* Gray background with some transparency */
    padding: 5px;
    /* Optional: Adds some padding to the text */
    border-radius: 5px;
    /* Optional: Adds rounded corners */
}

.image-author a {
    color: black;
}