header {
    width: 100%;
    height: 100vh;       
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 255, 0.5);

}


body {
      font-family: 'Roboto', sans-serif; /* Apply the chosen font */
    }
	
.card {
      height: 100%; /* Make cards occupy full height of parent */
      display: flex; /* Use flexbox */
      flex-direction: column; /* Arrange child elements in a column */
    }

.card-body {
      flex: 1; /* Allow the body to grow and occupy remaining space */
    }
	
/*
.card-img-top-svg {
		height: 70px;
		width: 70px;
		margin: auto;
	}
	*/

.card-img-top-svg {
    width: 70px;
    height: auto;
    margin: auto;
}

	
/* Default styles */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Media query for mobile devices */
@media (max-width: 767px) {
    .container {
        width: 100%;
    }
    
    .container-fluid {
        width: 100%;
    }
}


/*Login page classes*/
.o-hidden {
  overflow: hidden !important;
}

small {
  font-size: 80%;
}

.bg-login-image {
  background: url("https://aiadsguru.com/img/bg-login.jpg");
  background-position: center;
  background-size: cover;
}



.bg-register-image {
  background: url("https://aiadsguru.com/img/bg-register.jpg");
  background-position: center;
  background-size: cover;
}

.bg-password-image {
  background: url("https://aiadsguru.com/img/bg-password.jpg");
  background-position: center;
  background-size: cover;
}


