﻿body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    background-color: white;
    -webkit-appearance: none;
    transition: background-color .5s;
}

a {
    color: inherit;
    text-decoration: inherit;
    display: contents
}


input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

input[type="password"] {
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}


.desktop {
    /*display: block;*/
}

.mobile {
    /*display: none;*/
}

@media only screen and (max-width:479px) {
    .desktop {
        /*display: none*/
    }

    .mobile {
        /*display: block*/
    }
}
