/* Form access (Login - Register)
------------------------------------------------------------------------------*/
.form-access {
    position: relative;
    width: 90%;
    max-width: 450px;
    box-sizing: border-box;
    padding: 40px 30px 20px;
    background-color: #FFF;
    -webkit-box-shadow: 1px 0px 20px rgb(0 0 0 / 5%);
    box-shadow: 1px 0px 20px rgb(0 0 0 / 5%);
    border-radius: 0.25rem;
    word-wrap: break-word;
    background-clip: border-box;
    margin: 0 auto;
}

.form-access header {
    text-align: center;
}

.form-access header figure.logotype {
    width: 200px;
}

.form-access header .title-page {
    font-family: inherit;
    margin: 30px 0;
    text-align: center;
    font-size: 18px;
    font-weight: bolder;
    opacity: 0.7;
}

.form-access footer {
    padding-top: 20px;
}

.form-access footer a.btn.btn-link {
    font-size: 12px;
    color: rgba(var(--muted));
}

p.copy {
    margin: 10px 0 0;
    font-size: 10px;
    font-weight: bold;
    text-transform: lowercase;
    opacity: 0.4;
    text-align: center;
}

p.copy a {
    color: #222;
    font-weight: bold;
}

.gradient-primary-gray {
    background: #FFF;
    background: -moz-linear-gradient(top, #FFF 0%, #FFF 45%, #1c6234 45%, #1c6234 100%);
    background: -webkit-linear-gradient(top, #FFF 0%, #FFF 45%, #1c6234 45%, #1c6234 100%);
    background: linear-gradient(to top, #FFF 0%, #FFF 45%, #1c6234 45%, #1c6234 100%);
}