.single-line-input
{
    padding: 0.2cm 0.25cm;
    width: calc(100% - 0.5cm);
    border-bottom: solid 1px hsl(0, 0%, 50%);
    background-color: hsl(0, 0%, 99%);
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
    border-radius: 5px;
    margin: 5px 0px;
    font-size: 0.4cm;
    transition: 0.1s;
}

.single-line-input:hover
{
    background-color: hsl(0, 0%, 97%);
}

.single-line-input:active
{
    background-color: hsl(0, 0%, 93%);
}

.single-line-input:focus
{
    border-bottom: solid 3px hsl(220, 67%, 59%);
}

.submit-container
{
    display: flex;
    justify-content: end;
    align-items: center;
}

.prefab-input
{
    padding: 0.25cm 0.5cm;
    width: calc(100% - 1cm);
    border-bottom: solid 1px hsl(0, 0%, 50%);
    background-color: hsl(220, 67%, 99%);
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
    border-radius: 5px;
    margin: 0px 0px 5px 0px;
    font-size: 0.4cm;
    transition: 0.1s;
    font-family: "Segoe UI", "Roboto", "Helvetica Neue";
}

.prefab-input:hover
{
    background-color: hsl(220, 67%, 97%);
}

.prefab-input:focus
{
    border-bottom: solid 3px hsl(220, 67%, 59%);
}

.prefab-button
{
    height: 1cm;
    border-radius: 5px;
    background-color: hsl(220, 51%, 93%);
    border: none;
    color: hsl(0, 0%, 0%);
    font-size: 0.4cm;
    font-weight: bold;
    transition: 0.1s;
    box-shadow: 0px 2px 2px hsl(0, 0%, 80%);
}

.prefab-button:hover
{
    background-color: hsl(220, 51%, 85%);
}

.login-override-button
{
    width: calc(50% - 5px);
    margin: 10px 0px 0px 0px;
}

.settings-override-button
{
    width: 3cm;
    margin: 10px 0px 0px 10px;
}

.post-override-input
{
    height: 250px;
    resize: none;
}