@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700&display=swap');

body {
    min-height: 100vh;
}

p {
    text-align: justify;
}

.content-wrapper {
    margin-top: 0;
}
.content-wrapper.inner {
    padding: 15px 0 30px 0;
}
.content-wrapper.registration {
    background-color: rgb(95, 141, 187);
    padding: 15px 0 30px 0;
}

.content-wrapper.dashboard {
    position: relative;
    background-color: rgb(216, 234, 253);
    padding: 15px 0 30px 0;
}
/* .page-header h3 {
    margin-top: 15px;
} */

.ip-log {
/*     position: absolute;
    bottom: 10px;
    left: 0; */
    width: 100%;
    text-align: center;
    padding: 10px;
    margin-top: 60px;
}

.card {
    border-radius: 0.75rem;
    padding: 30px;
}
.btn-highlight {
    background-color: #12466a;
    color: #ffffff;
    font-weight: 600;
    transition: all .5s;
}
.btn-highlight:hover {
    background-color: #1e78b4;
    color: #ffffff;
}

.registration-btn-container {
    text-align: right;
}

.registration-btn {
    padding: .625rem 1rem;
    font-size: 1.0625rem;
}

.navbar-custom {
    background-color: #0b8cd1;
}
.navbar-toggler {
    color: rgba(255,255,255,.55);
    border-color: rgba(255,255,255,.1);
}
.navbar-collapse {
    justify-content: center;
}
.nav-link {
    color: #fff;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}
.nav-link:hover {
    color: #e5e5e5;
}

.dropdown-toggle::after {
    margin-left: .55em;
    vertical-align: .055em;
}    
.dropdown-menu {
    padding: 0;
    border-radius: 0 0 .25rem .25rem;
}

.hero img {
    width: 100%;
}

.external-logo {
    border-radius: 10px;
    border: 1px solid #c2c2c2;
    margin: 15px 0;
}

.inner .page-title {
    font-weight: 700;
}

.registration .page-title {
    font-weight: 700;
    color: #fff;
}

.registration .breadcrumb-item {
    color: #fff;
}
.registration .breadcrumb-item a, 
.registration .breadcrumb-item::before {
    color: #c2c2c2;
}

.dashboard .page-title {
    font-weight: 700;
    color: #666;
}

.btn-custom {
    width: 200px;
}

span.required {
    color: #f00;
    font-size: 16px;
    font-weight: 700;
}

.instruction-list {
    list-style-type: none;
    padding: 0;
}
.instruction-list .instruction-details {
    position: relative;
    padding: 1.25rem;
    margin-bottom: .625rem;
    background-color: #e9e9ff;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    box-shadow: rgba(0,0,0,.15) 1.95px 1.95px 2.6px;
}

.footer {
    color: #f8f9fa !important;
}
.footer a {
    color: #f8f9fa !important;
    text-decoration: none;
}
.important-links ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.important-links ul li {
    display: inline-block;
}
.important-links ul li a {
    text-decoration: none;
    padding: 0 .75rem;
}
.important-links ul li:first-child a {
    padding-left: 0;
}


.flash-message {
    position: fixed;
    bottom: 0;
    /* right: 0; */
    width: 100%;
    z-index: 9999;
    border-radius: 0 !important;
    text-align: center;
    margin-bottom: 0;
    -webkit-animation: fadein 0.5s;
    animation: fadein 0.5s;
}

.flash-message.alert-danger {
    background-color: #ee0e21;
    border-color: #ee0e21;
    color: #fff;
}

.flash-message.alert-success {
    background-color: #03c744;
    border-color: #03c744;
    color: #fff;
}
/* Animations to fade the snackbar in and out */

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

.form-block {
    background-color: #edf5ff;
    border-radius: 6px;
}

label {
    font-weight: 600;
}

/***************
MEDIA QUERIES
***************/
@media(max-width:520px){
    .important-links ul {
        text-align: center;
    } 
}    
@media(max-width:768px){
    .logo-container {
        text-align: center;
    }
    .registration-btn-container {
        text-align: center;
        margin: 15px 0;
    }   
}    