body {
    background: darkslategray;
    color: whitesmoke;
}
.gray {
    color: gray;
}
.container {
    background-color: #232323;
    padding: 5px;
    text-align: center;
    border-radius: 5px;
    border: solid white;
    border-right: solid blue;
    border-left: solid red;
    width: 90%;
    max-width: 800px;
    justify-self: center;
}
.form input {
    border-radius: 5px;
    outline: none;
    border: none;
    font-size: 15px;
    background: transparent;
    border: solid darkgray 2px;
    color: white;
    padding: 5px;
    width: 100%;
}
.form {
    text-align: left;
    width: 80%;
    justify-self: center;
}
.form label {
    padding-left: 10px;
    font-size: 17px;
}
h3 {
    margin-top: 10px;
    height: 2px;
}
.form hr {
    height: 0;
    margin: 0;
}
.form p {
    margin-top: 1px;
}
.s {
    text-align: center;
    background: blue;
    box-shadow: none;
    border: solid blue;
    border-radius: 10px;
    color: white;
    width: 100%;
    font-size: 20px;
}
.msg {
    position: fixed;
    justify-self: right;
    border-radius: 5px;
    min-width: 200px;
    max-width: 300px;
    padding: 5px;
    background: rgba(0, 255, 170, 0.401);
    backdrop-filter: blur(5px);
}
.msg p {
    margin-top: 0;
}
.msgfail {
    position: fixed;
    justify-self: right;
    border-radius: 5px;
    min-width: 200px;
    max-width: 300px;
    padding: 5px;
    background: rgba(245, 10, 49, 0.401);
    backdrop-filter: blur(5px);
}
.msgfail p {
    margin-top: 0;
}
.tHeader {
    background-color: darkslategray;
    padding: 2px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.tHeader p {
    margin-bottom: 0;
}