.button {
    font-size: 10px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    border-radius: 5px;
    padding: 5px 10px 5px 10px;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: cadetblue;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    margin: auto;

}

.login {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bolder;
}

.formtextpass, .formtextuser, .text {
    font-family: 'Courier New', Courier, monospace;
    text-align: right;
}

p, .button {
    text-align: center;
}

.button {
    background-color: rgb(11, 141, 110);
    color: white;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
}

@media only screen and (max-width: 600px) {
    .container {
      padding: 0 15%;
    }

    .formtextpass, .formtextuser {
        text-align: center;
    
    }
  }