body {
    background-color: #f2f2f2;
}

.container {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.loginDiv {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px #888888;
    max-width: 400px;
    width: 100%;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=button] {
    background-color: #333;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

input[type=button]:hover {
    background-color: black;
}

.pull-right {
    float: right;
}
#message-box {
margin-left: 110px;
}