:root{
    --color-blue:#008da6;
    --color-dark-blue:#005375;
    --color-white:#FFFFFF;
    --color-light:#f8f8f8;
    --color-black:#000000;
    --color-light-grey:#efefef;
    --color-grey:#888686;
    --color-light-grey:#535353;
    --color-yellow:#f4c146;
}
.tablet-form-input::placeholder{
    color: var(--color-grey);
}
.authentication-section{
    padding-top: 100px;
    padding-bottom: 70px;
}
.authentication-item {
    padding: 30px;
}
.form-group{
    margin-bottom: 20px;
}
.mb-20{
    margin-bottom: 20px;
}
.pb-30{
    padding-bottom: 30px;
}
p{
    font-size: 15px;
}
.form-control{
    background-color: var(--color-light);
    border: none;
}
.form-control:focus {
    outline: 0;
    background-color:var(--color-light);
    box-shadow:none !important;
}
.full-width{
    width: 100%;
}
.input-checkbox-link{
    text-decoration: none;
    color: var(--color-dark-blue);
    transition:all .3s linear;
    cursor: pointer;
}
.input-checkbox-link:hover{
    color:var(--color-yellow);
}
.authentication-link{
    color: var(--color-dark-blue);
    transition:all .3s linear;
    cursor: pointer;
}
.authentication-link:hover{
    color:var(--color-yellow);
}
@media screen  and (max-width:400px){
    .authentication-account-access{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}