html,
body {
    margin: 0;
    padding: 0;
    background-color: #111;
    color: white;
    font-family: "Courier New", Courier, monospace;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.stores {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 400px;
}

.stores > span {
    text-align: center;
}

.store {
    text-align: center;
    text-decoration: none;
    color: white;
    width: 200px;
    padding: 20px;
    margin-bottom: 15px;
    background-color: #1a1a1a;
    border: 2px dashed #444;
    border-radius: 2px;
    cursor: pointer;
}

.login {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 400px;
}

.login > span {
    text-align: center;
}

.login > form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.login > form > input {
    text-align: center;
    text-decoration: none;
    color: white;
    width: 200px;
    padding: 20px;
    margin-bottom: 15px;
    background-color: #1a1a1a;
    border: 2px dashed #444;
    border-radius: 2px;
}

.login > form > input:focus {
    outline: none;
    border-color: #888;
}
