@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap');

*{
    font-family: 'Oxygen', sans-serif;
}

body, html{
    background: #fafafa;
}

.bg-docs{
    background-image: url('/img/img-docs.png');
    background-color: #00093f;
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.login__container{
    box-sizing: border-box;
    padding: 2rem;
    background: white;
    border-radius: 5px;
    border: 1px solid #eaeaea;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 15px 30px #000d1f;
}

.login__logo{
    box-sizing: border-box;
    padding: 2rem;
    background: #00093f;
    border-radius: 5px;
    border: 1px solid #00093f;
    width: 100%;
    max-width: 400px;
    margin-top: 1rem;
}

.text-light{
    color: white;
}

.text-dark{
    color: #00093f;
}

footer{
    text-align: center;
    color: white;
    font-size: 0.7rem;
    background-color: #000132;
    padding: 1rem;
}

a.doc-link:hover{
    text-decoration: none;
    color: #ff6200;
    transition: all 0.3s ease;
}

.pdf-viewer{
    display: block;
}

@media print{
    .pdf-viewer{
        display: none;
    }
}

.uk-button-primary{
    background-color: #001e51;
}

.uk-button-danger{
    background-color: #ff5722;
}