body {
    font-family: Arial, sans-serif;
    background-image: url(/img/bkg.jpg);
    background-size: cover;  
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    padding: 0 20px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(238, 235, 235, 0.1);
}

#div-header{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
    background-color: rgb(131, 88, 231);
}

h2 {
    font-size: 19px;
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

form {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin-top: 20px;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
}

input {
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

#login_view{
    margin-top: 15px;
    margin-bottom: 20px;
    text-align: left;
}

button {
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 10px;
    background-color: #600396;
    font-size: 16px;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background-color: #8267a7;
}

#message {
    text-align: center;
}
