@import url('https://fonts.googleapis.com/css?family=Roboto');

:root {
    --primaryColor: #333;
    --secondaryColor: #e1e1e1;
    --tertiaryColor: #b1b1b1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: var(--primaryColor);
    background-color: var(--secondaryColor);
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 350px;
    height: 160px;
    background-color: var(--primaryColor);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.input-container {
    display: flex;
    margin-bottom: 8px;  
}

label {
    width: 80px;
    margin-right: 8px;
    text-align: right;
}

input {
    width:200px;  
    padding-left: 2px;
}

button {
    color: var(--primaryColor);
    font-size: 1rem;
    padding-left: 8px;
    padding-right: 8px;
    background-color: var(--secondaryColor);
    height: 2rem;
    border: none;
    border-radius: .5rem;
    cursor: pointer;
    margin-top: 8px;
    margin-bottom: 8px;
}

button:hover {
    opacity: 0.7;
}

.message {
    color: #e34ec9;
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    text-align: center;
}