@import url(https://fonts.googleapis.com/css?family=Roboto:400,900);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li > a{
    display: inline-block;
}

table {
  border-collapse: collapse;
}

html {
    font-size: 16px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.centered {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 2rem;
    transform: translate(-50%, -50%);
}

.full-screen-bg {
    width: 100vw; /* Full width of the viewport */
    overflow-x: hidden;
}

.full-screen-bg:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 50%;
    transform: translateX( -50%);
    height: 100%;
    width: 100vw;
    background-image: url('../assets/home-image-light.jpg');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
}

body {
    overflow-x: hidden;
    background-color: rgb(240, 240, 240);
}

nav.navbar {
    background-color: #FBFBFB;
    /* background-color: #3A3960;
    color: white; */
    height: 60px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login-btn{
  padding: 12px 30px;
}

.nav-login-btn{
  background-color: #1D1616;
  border-radius: 0.25rem;
  margin-right: 1rem;
}

.nav-login-btn-text{
  padding: 10px 20px;
  text-decoration: none;
  color: #fbfbfb;
  font-weight: bold;
}
.nav-login-btn-text:hover{
  color: #fbfbfb;
}

.help-btn{
  border: 2px solid #1D1616;
  border-radius: 0.25rem;
}

.help-btn-txt{
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  color: #1D1616;
}

.help-btn-txt:hover{
  color: #1D1616;
}
/* .help-btn:hover > .help-btn-txt{
  color: white;
  text-decoration: underline;
} */

.login-image {
  background-image: url('../assets/home-image-light.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.card-bg-blue{
  background-color:#16404D;
  color: #fbfbfb;
}
.card-bg-church {
    background-color: #0d6efd;
    color: #fbfbfb;
}
.card-bg-region {
    background-color: #ffc107;
    color: #fbfbfb;
}

.register-image {
    background-image: url('../assets/home-image-light.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.separator {
  position: relative;
}

.separator hr {
  border-color: var(--bs-body-color);
  opacity: 0.15;
}

.separator span {
  background-color: #f8f9fa;
  color: var(--bs-body-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0.8;
}

.logo{
  height: 180px;
  border: 20px white solid;
  box-shadow: rgba(72, 135, 202, 0.8) 0 0 90px 33px;
  margin: 0;
  z-index: -1;
}

/* Overlay text styling */
.overlay-text {
  color: white;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  padding: 8px;
}

.profile-circle {
  text-decoration: none;
  width: 44px;
  height: 44px;
  background-color: #16404D; /* Change to preferred background color */
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-circle:hover{
  color: white;
}

.profile-circle span {
  display: inline-block;
  text-transform: uppercase;
}

.nav-item-main{
  color:#707070;
  border-radius: 0.25rem;
}

.bg-nav{
  background-color: #fbfbfb;
}

.nav-item-main:hover{
  background-color: #e3e6e8;
}

.report-step{
  color:white;
}

.report-step:hover{
  color:white;
}

.report-step.active{
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}


.video-container{
  height: 100vh;
}

.video{
  width: 100%;
  height: 100%;
}