@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,500;1,400&display=swap');

body{
    --link__primary: #2393d1;
    --link__primary__darker: #1a719f;
    --link__primary__darkest: #125274;
    --link__secondary: #FFF;

    font-family: 'Ubuntu', sans-serif !important;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.center-content {
    align-items: center;
}

.center_self{
    display: block;
    margin: 10px auto;
}

.form {
    padding: 20px 40px;
    background-color: white;
}

.box_shadow {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.075), 0 6px 20px 0 rgba(0, 0, 0, 0.075);
}

.form--sub_description {
    max-width: 500px;
    text-align: center;
}

.background_image_holder {
    position: absolute;
    top: 0;
    z-index: -1;
}

.background_image_holder>img {
    max-width: 80%;
    object-fit: contain;
}

.form_info_container {
    background-color: #efefef;
    border: 10px;
    border-color: #efefef;
    border-style: solid;

    border-radius: 2px;
}

.passport_image_preview {
    height: 200px;
    border: 1px solid black;
    border-radius: 2px;
}

.hide_text {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.hidden{
    display: none;
}

.spacer{
    height: 100px;
}

.banner{
    width: 100%;

    background-color: var(--link__primary);
    color: white;

    text-align: center;
    padding: 10px;
    margin-bottom: 25px;
}

.article_container{
    max-width: 800px;
    margin-bottom: 10px;
    padding: 50px 20px;

    height: 100%;

    background: var(--link__secondary);
}
