html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    font-family: Arial,'Roboto',Helvetica,sans-serif;
    background: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Plantin,"Palatino Linotype","Times New Roman",serif;
    color: #7f3f98;
    font-weight: 300;
    line-height: 1.5em;
}

p {
    color: rgba(0,0,0, 0.87);
}

.form-group{
    margin-bottom:0.5em;
}
.form-group label{
    font-weight:bold;
}
.btn {
    border: none;
    border-radius: 3px;
    position: relative;
    padding: 12px 30px;
    margin: 10px 1px;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    will-change: box-shadow, transform;
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

    .btn:active {
        background-color: #555555;
        color: #FFFFFF;
    }

.btn-primary {
    background-color: #7f3f98;
    border: 0;
    color: #fff;
    width:100%;
}

    .btn-primary:hover {
        border: 0;
        background-color: #612e75;
    }

    .btn-primary:active {
        color: #fff;
        background-color: #a682b2;
        background-image: none;
        border-color: #a682b2;
    }

    .btn-primary:focus {
        background-color: #a682b2;
    }

.bg-secondary {
    background-color: #4b4b4b;
}