body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background: url('./quietnight.png') no-repeat center center fixed;
    background-size: cover;
}


.login-container {
    width: 450px;
    padding: 45px;
    border-radius: 13px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    background: rgb(241, 212, 166);
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 19px;
    text-align: center;
    display: block;
}

.login-container h2 {
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: #4CAF50;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.login-container label {
    text-align: center;
    display: block;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 6px;
}


input[type="text"], input[type="password"], button {
    width: 100%;
    padding: 12px;
    margin: 12px 0;
    box-sizing: border-box;
    font-size: 19px;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 19px;
}

.g_id_signin {
    margin-top: 20px;
}

#google-signin-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

button:hover {
    opacity: 0.8;
}

a {
    display: block;
    text-align: center;
    color: #fff;
    margin-top: 20px;
    font-size: 16px;
}


#forgotling {
    color: black;
}

#guestBtn {
    position: relative;
    overflow: hidden;
    background-color: #ea9345;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 19px;
    padding: 12px;
    width: 100%;
    text-align: center;
}

.footmarks-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.footmark {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0.5;
    background: url('foot.png') no-repeat center center;
    background-size: contain;
}

@media (max-width: 600px) {
    .login-container {
        width: 90%;
        padding: 20px;
        font-size: 16px;
    }

    input[type="text"], input[type="password"], button {
        padding: 8px;
        margin: 8px 0;
        font-size: 16px;
    }

    button {
        font-size: 16px;
    }

    a {
        font-size: 14px;
    }

    #guestBtn {
        font-size: 16px;
        padding: 8px;
    }
}
