body {
    font-family: "Roboto Mono", monospace;
    font-size: 20px;

    background-color: #000000;
    color: #ffffff;
    margin: 0;
}

a {
    color: #ffffff;
    text-decoration: none;

    padding: 8px;
    border-radius: 20px;
    background-color: none;

    transition: 0.5s;
}

a:hover {
    background-color: #3f3f3f;
}

input[type="text"],
input[type="password"] {
    box-shadow: none;

    background-color: #000000;
    color: #ffffff;

    border-style: solid;
    border-color: #ffffff;
    border-width: 3px;
    border-radius: 20px;

    transition: 0.5s;

    padding: 6px 8px;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;

    border-color: #afafaf;
    user-select: none;
}

input[type="text"]:hover,
input[type="password"]:hover {
    border-style: dashed;
    user-select: none;
}

input[type="submit"] {
    box-shadow: none;

    background-color: #000000;
    color: #ffffff;

    border: none;
    border-radius: 20px;

    transition: 0.5s;

    padding: 6px 8px;
}

input[type="submit"]:hover {
    background-color: #303030;
}

.wrapper {
    box-sizing: border-box;
    height: 100%;
    width: 100%;

    padding: 10px 120px;
    gap: 50px;

    display: flex;
    align-items: center;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: row;

    gap: 10px;
    padding: 5px;
}

.container-inner {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;

    padding: 5px;
    gap: 5px;
}

.box {
    border-style: solid;
    border-width: 3px;
    border-radius: 20px;
    border-color: #ffffff;

    background-color: #000000;
    color: #ffffff;

    padding: 10px;
}

.selectable-box {
    transition: 0.5s;
}

.selectable-box:hover {
    border-style: dashed;
    border-width: 3px;
}

#status-box {
    width: 300px;
    margin: 50px auto;
}
