@font-face {
    font-family: Source-sans;
    src: url('login-arquivos/assets/fonts/SourceSansPro-Regular.otf');
}

* {
    margin: 0 auto;
    font-size: 18px;
    color: rgb(82, 82, 82);
    font-family: Source-sans, Tahoma, sans-serif
}

body {
    height: 100%;
}

.larguraMax {
    max-width: 80%;
    transition: .2s;
}

@media (orientation:landscape) {
    .larguraMax {
        max-width: 40%;
    }
}


.marginTopN0 {
    margin-top: 80px
}

.marginTopN1 {
    margin-top: 40px
}

input[type="text"] {
    border: 0;
    border-bottom: 1px solid #ccc;
    padding: 5px
}

.btn {
    width: 100%;
    font-family: Tahoma, Arial;
    font-size: 18px;
    color: white;
    padding: 7px;
    background-color: green;
    border: 0px;
    border-bottom: 4px solid darkgreen !important;
    border-radius: 4px;
    cursor: pointer;
    transition: all .5s ease;
}

.btn:hover {
    background-color: #067806
}

.btn:active {
    padding-top: 8px;
    border-bottom: 3px solid darkgreen !important;
}

[disabled] {
    background-color: rgb(226, 226, 226) !important;
    border-bottom: 4px solid rgb(206, 206, 206) !important;
    color: rgb(109, 109, 109) !important;
}