body{
    background:#1f1f1f;
    font-family:Arial, sans-serif;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
    margin:0;
}

.login-box{
    background:#750000;
    padding:40px;
    border-radius:10px;
    width:320px;
    box-shadow:0 0 20px rgba(0,0,0,0.4);
	text-align:center;
}

input[type=password]{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:none;
    border-radius:5px;
    font-size:16px;
    box-sizing:border-box;
}

button{
    width:100%;
    padding:12px;
    background:#0078ff;
    color:white;
    border:none;
    border-radius:5px;
    cursor:pointer;
    font:bold 16px Tahoma, Sans-Serif;
}

button:hover{
    background:#005fd1;
}

.error-box{
    background:#c62828;
    padding:10px;
    border-radius:5px;
    margin-bottom:15px;
    display:none;
}
.SCPLogo{
	width:200px;
	margin:auto;	
}