body {
    font-family: Arial, sans-serif;
    justify-content: right;
    align-items: right;
    height: 100vh;
	background-color: #1A5C8C;
}

.login-container {
    background: #1A5C8C;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

input {
    display: block;
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #F46000;
    color: white;
    border: none;
    padding: 10px;
    width: 90%;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: #F16000;
}

#message {
    margin-top: 10px;
    color: white;
}
