.ripple-container
{
    position: relative;
    overflow: hidden;
}

.ripple-container:active::after
{
    content: '';
    position: absolute;
    background-color: hsl(0, 0%, 70%);
    border-radius: 50%;
    animation: ripple 0.1s ease-out;
    pointer-events: none;
}

@keyframes ripple
{
    0%
    {
        width: 0px;
        height: 0px;
        opacity: 1;
        top: 50%;
        left: 50%;
    }

    100%
    {
        width: 1000px;
        height: 1000px;
        opacity: 0;
        top: calc(50% - 500px);
        left: calc(50% - 500px);
    }
}

.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(142, 67%, 59%);
}

.submit-container
{
    display: flex;
    justify-content: end;
    align-items: center;
}

.prefab-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: 0px;
    font-size: 0.4cm;
    transition: 0.1s;
    font-family: "Segoe UI", "Roboto", "Helvetica Neue";
}

.prefab-input:hover
{
    background-color: hsl(0, 0%, 97%);
}

.prefab-input:focus
{
    border-bottom: solid 3px hsl(142, 67%, 59%);
}

.prefab-button
{
    height: 1cm;
    border-radius: 5px;
    background-color: hsl(142, 81%, 80%);
    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(142, 81%, 70%);
}

.login-override-button
{
    width: calc(50% - 5px);
    margin: 10px 0px 0px 0px;
}

.settings-override-button
{
    width: 3cm;
    margin: 10px 0px 0px 10px;
}