body {
    background: #f3f3f3;
    margin: 0;
    padding: 0;
    color: #424242;
}

body * {
    font-family: 'Roboto';
    font-size: 1em;
}

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

.card {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
}

.message {
    width: 22rem;
    padding: 1rem 3rem;
}

.btn-primary {
    background: #fbaf3a;
    width: 20rem;
    padding: 0.7rem;
    text-transform: uppercase;
    font-size: 0.9em;

    position: relative;

    display: block;
    margin: 30px auto;

    overflow: hidden;

    border-width: 0;
    outline: none;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    transition: background-color 0.3s;
    cursor: pointer;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #f0a331;
}

.btn-primary > * {
    position: relative;
}

.btn-primary span {
    display: block;
    padding: 12px 24px;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0;
    padding-top: 0;
    border-radius: 100%;
    background-color: rgba(236, 240, 241, 0.3);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.btn-primary:active:before {
    width: 120%;
    padding-top: 120%;
    transition: width 0.2s ease-out, padding-top 0.2s ease-out;
}

input[type='text'],
input[type='password'],
input[type='email'] {
    border: 0;
    border-bottom: 1px solid #707070;
    width: 100%;
    margin-top: 1rem;
    padding: 0.5rem 0rem;
    outline: none;
}

input[type='text']:focus,
input[type='password']:focus,
input[type='email']:focus {
    border-color: #fbaf3a;
}

.help-block, .alert-danger {
    font-size: 0.8em;
    color: red;
}

.alert-success {
    color: white;
    background: #4caf50;
    padding: 1rem;
    margin: 1rem 0;
}

.primary--text {
    color: #fbaf3a;
    text-decoration: none;
}

.btn-text {
    padding: 1rem;
    color: #fbaf3a;
    text-decoration: none;
}

.btn-text small {
    font-size: 0.9em;
}

.forgot-pw-container {
    margin-top: 1rem;
}

.mt-1 {
    margin-top: 1rem;
}

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

.banner-text {
    font-size: 4rem;
    font-weight: 600;
}


.snackbar {
    display: none;
    font-family: 'Roboto';
    font-size: 20px;
    min-width: 344px;
    margin: -2px;
    font-weight: 300;
    position: fixed;
    left: calc(50% - 172px);
    bottom: 0;
    border-radius: 4px;
    letter-spacing: .0178571429em;
    line-height: 1.25rem;
    padding: 14px 16px;
    box-shadow: 0 3px 5px -1px rgb(0 0 0 / 20%), 0 6px 10px 0 rgb(0 0 0 / 14%), 0 1px 18px 0 rgb(0 0 0 / 12%);
}

.snackbar.snackbar-danger {
    background-color: #f44336!important;
    border-color: #f44336!important;
    color: white;
}

.smaller--text {
    font-size: 14.4px;
}