*
{
    margin:0px;
    padding:0px;
}

body
{
    background-color: lightgray;
}

.container
{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

body {
    background-color: lightgray;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.card
{
    background-color: #161616;
    border-radius: 3px;
    border: 1px solid black;
    width: 800px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}


input
{
    width: 400px;
    height: 35px;
    border-radius: 3px;
    border: 0;
    background-color: lightgray;
    border-bottom: 1px solid white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: black;
}



.form-card img
{
    width: 32px;
}

input::placeholder
{
    color: gray;
}

input:focus
{
    outline: 0;
}

p
{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: .9rem;
    margin-top: 1rem;
}

a
{
    color: yellow;
    text-decoration:none;
}

h1
{
    text-align: center;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

#submitbtn
{
    background-color: #337ab7;
    color: white;
    border: 0;
}

@media only screen and (max-width:806px)
{
    .card
    {
        width: 99%;
    }
}



@media only screen and (max-width:426px)
{
    input
    {
        width: 345px;
    }
}


@media only screen and (max-width:362px)
{
    input
    {
        width: 330px;
    }
}

@media only screen and (max-width:342px)
{
    input
    {
        width: 300px;
    }
}


@media only screen and (max-width:314px)
{
    input
    {
        width: 280px;
    }
}


@media only screen and (max-width:288px)
{
    input
    {
        width: 240px;
    }
}

