body {
	margin:	0;
	padding:	0;
    background-image: url('../images/public_login_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    background: #ffffff;
    padding: 40px;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    text-align: center;
}

.login-box h2 {
    margin-bottom: 20px;
    font-weight: 600;
}

.input-group {
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.input-group input {
    width: 95%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-btn {
    width: 60%;
    padding: 12px;
    background: #0078ff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.login-btn:hover {
    background: #005fcc;
}

.login-links {
    margin-top: 15px;
    text-align: center;
}

.login-links a {
    display: inline-block;
    margin: 0 10px;
    font-size: 14px;
    color: #0078ff;
    text-decoration: none;
}

.login-links a:hover {
    text-decoration: underline;
}