
*::placeholder
{
    color: #777;
    font-size: .7rem;
}

*::-webkit-input-placeholder
{
    color: #777;
    font-size: 70%;
}

*::-moz-placeholder
{
    color: #777;
    font-size: 70%;
}

*:-ms-input-placeholder
{
    color: #777;
    font-size: 70%;
}

*:-moz-placeholder
{
    color: #777;
    font-size: 70%;
}


/*****************************************
Inputs (all in .inputcontainer)
*****************************************/

div.inputcontainer
{
    box-sizing: border-box;
    display: inline-block;
    position: relative;
    line-height: 1.4rem;
    height: 1.8rem;
    /*****************************************
    width: 5rem;
   *****************************************/
    margin: 0 .2em 0 .2em;
}

div.inputcontainer::after
{
    content: "";
    display: block;
    position: relative;
    bottom: .3rem;
    height: .3rem;
    left: 0;
    right: 0;

    border-bottom: 1px solid #999;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    border-radius: 0 0 .2rem .2rem;
    padding: 0;
    margin: 0;
}

div.inputcontainer input
{
    box-sizing: border-box;
    outline: none;
    vertical-align: baseline;

    border: 0px solid #f00;
    border-radius: .2rem;
    background-color: rgba(255, 255, 255, .7);
    backdrop-filter: blur(.5em);

    margin: 0;
    padding: .2em .5em .0em .5em;
    font-size: 1rem;
    line-height: inherit;
    height: inherit;
    width: 100%;

    color: #777;

    overflow: hidden;

    transition: all .05s ease-in-out;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

div.inputcontainer input:focus
{
    outline: none;
    color: #555;
    /*background-color: #057;*/
    box-shadow: inset 0 0 1px #999;
    transition: all .05s ease-in-out;
}

div.inputcontainer input::selection
{
    color: #fff;
    background-color: #730;
    background-image: none;
    opacity: 0;
}

div.inputcontainer input::-moz-selection
{
    color: #fff;
    background-color: #730;
    background-image: none;
    opacity: 0;
}

div.inputcontainer input::-webkit-input-placeholder
{
    color: #777;
    opacity: 0.5;
    font-size: 1rem;
    line-height: 1.4rem;
}

div.inputcontainer input::-moz-placeholder
{
    color: #034;
    opacity: 0.5;
    font-size: 1rem;
    line-height: 1.4rem;
}

div.inputcontainer input:-ms-input-placeholder
{
    color: #034;
    opacity: 0.5;
    font-size: 1rem;
    line-height: 1.4rem;
}

div.inputcontainer input::-ms-input-placeholder
{
    color: #034;
    opacity: 0.5;
    font-size: 1rem;
    line-height: 1.4rem;
}

div.inputcontainer input:-moz-placeholder
{
    color: #034;
    opacity: 0.5;
    font-size: 1rem;
    line-height: 1.4rem;
}

/*****************************************
Inputs (all in .inputcontainer) End
*****************************************/

/*****************************************
Textareas
*****************************************/
textarea
{
    box-sizing: border-box;
    outline: none;
    padding: .5rem;
    margin: 0;
    font-size: 1rem;
    color: #555;
    border: 1px solid #999;
    background: #ffffff99;
    border-radius: .2rem;
    resize: none;
}

/*****************************************
Textareas End
*****************************************/

button
{
    display: inline-block;
    color: #fff;
    background-color: #ffffff33;

    border: 1px solid #ffffff77;
    border-radius: .2em;


    padding: 0 1em 0 1em;
    height: 4em;

    text-align: center;

    font-size: 1rem;
    margin: .5em;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

    transition: transform .05s linear;
}

html:not(.touch) button:hover
{
    background-color: #0003;

    transition: transform .05s linear;
    transform: scale(1.05);
}

html:not(.touch) button:active
{
    color: #fff;
    background-color: #0000;

    transition: transform .05s linear;
    transform: scale(0.95);
}





