.login-page-container {
    height: 600px;
    width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--login-page-bg);
    margin: auto auto;
}

hr {
    border: none;
    height: 2px; /* Adjust as needed */
    background-color: #888; /* Choose your color */
    width: 95%;
    margin: 40px;
    
    box-shadow: 0px 8px 13px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 8px 13px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 8px 13px 0px rgba(0,0,0,0.75);
}

.login-box {
    background-color: #eee;
    padding: 10px;
    width: 500px;
    min-height: 350px;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto auto;
    margin-top:100px;

    box-shadow: 0px 0px 60px 10px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 60px 10px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 60px 10px rgba(0,0,0,0.75);
}

.login-id {
    margin: 20px;
    font-size: 60px;
    font-weight:bolder;
}

.login-box label { display: block; margin-bottom: 5px; font-weight: bold; } 
.login-box input[type="text"], input[type="password"] { width: 100%; padding: 10px;
     margin-bottom: 15px; border: 1px solid #ccc; border-radius: 4px; 
     box-sizing: border-box; }
     
.login-box button { width: 100%; padding: 10px; background-color: #4CAF50; color: white; margin-top: 50px;
    border: 1px solid #327235; border-radius: 4px; cursor: pointer; font-size: 16px; } 
.login-box button:hover { background-color: #45a049; }

#login-error { color: red; }