:root {
    --success-color: rgba(45, 210, 132, 1);
    --error-color: rgba(241,79,93,255);
    --primary: #35607f;
    --light: #f4f7f9;
    --dark: #2a4a5e;
    --accent: #ffbb00;
}

.background-image {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


#main-logo{
    position: relative;
    z-index: 2;
    height: 20vh;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 2vh;
    padding-top: 2vh;
}

#navbar-logo{
    width: 10vh;
}

#navbar{
    padding-left:2vw;
    padding-right:2vw;
}

/*body {
    margin: 1rem;
}*/

.popup-circle{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border: 3.2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 40px;
    margin: 2rem;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}
.btn-outline-primary:hover {
    background-color: var(--dark) !important;
    border-color: var(--dark) !important;
    color: white !important;
}
.btn-outline-primary {
    background-color: white !important;
    border-color: var(--logo-color) !important;
    border-color: var(--dark) !important;
    color: white !important;
}



.bg-primary{
    background-color: #fdc77b !important;
}


.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}



@media only screen and (max-width: 1400px) {
    #main-logo{
        height: 10vh;
    }
    #navbar-logo{
        width: 7vh;
    }
}

#footer {
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 20vh;
}

.sigir-message{
    margin: 1vh 2vw 1vh 2vw;
}

#btn_scroll-top {
    position: fixed;
    z-index: 999;
    bottom: 20px;
    right: 20px;
    display: none;
    border-radius: 50%;
    box-shadow: 1px 1px 5px black;
}