* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html {
    height: 100%;
    background: #fafafa;
}

body { 
    font-family: Poppins, 'proxima-nova', arial;
    font-size: 13px;
    height: 100%;
    color:#333;
    background: #fafafa;
    padding:30px;
}

body.login {

    display: flex;
    align-items: center;
    align-content: center;
    width: 100%;
    text-align: center;
}

table {
    width:100%;
    margin-bottom: 5px;
}

th,td {
    text-align:left;
    padding:7px;
    border-bottom: 1px solid #eee;
    font-size:14px;
}

th {
    font-size:16px;
}

#login-box {
    margin: auto;
    width: 300px;
    text-align: left;
    padding-bottom:100px;
}

#login-box button {
    width: 100%;
}

.field {
    margin-bottom: 20px;
    position: relative;
}

.field.collapse {
    margin-bottom: 5px;
}
    
.field:last-child {
    margin-bottom: 0;
}

.field label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.field.checkbox {
    margin-bottom: 10px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=number],
input[type=date],
select {
    width:100%;
    padding:10px;
    border:1px solid #ccc;
    border-radius: 3px;
    outline: none;
}

input[type=checkbox] {
    margin-right: 5px;
}

button,
.button {
    font-family: Saira;
    font-size: 14px;
    background:#000;
    color:#fff;
    padding:15px;
    min-width: 200px;
    border:0;
    cursor: pointer;
    font-weight: normal;
    transition: .2s opacity ease-in-out;
}

.wholesale {
    font-weight:600;
}

.not-wholesale {
    opacity: .7;
    font-weight: 500;
}

.text-right {
    text-align:right;
}

.text-center {
    text-align:center;
}