:root{
	--primaryColor: #e67300 ;
	--secondaryColor: #1b80b6 ;	

}
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
} 
.btn.btn-primary{
	background-color:var(--primaryColor);
	border-color: var(--primaryColor);
}

.btn.btn-secondary{
	background-color:var(--secondaryColor);
	border-color: var(--secondaryColor);
}
.btn:hover {
	opacity: .85;
}

.mt_30{
	margin-top: 30px;
}
.mb_30{
	margin-bottom: 30px;
}


.login_page {
	min-height: 100dvh;
	background-image: url('../images/login_bg.jpg');
	background-size: cover;
	background-position: bottom center;
}
.login_page__content {
	min-height: 100dvh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.login_page__form {
	background-color: #fff;
	border-radius: 8px;
	padding: 30px;
	width: 100%;
	max-width: 500px;
}
.login_page__form_head {
	text-align: center;
	margin-bottom: 25px;
}
.login_logo img {
	max-width: 300px;
	width: 100%;
}
.login_page__form_head h1 {
	margin-top: 20px;
	font-weight: 600;
	font-size: 2rem;
}
.login_page__form {
	background-color: #fff;
	border-radius: 8px;
	padding: 30px;
	width: 100%;
	max-width: 500px;
	box-shadow: 0 0 8px rgba(0,0,0,.3);
}

.site_header {
	box-shadow: 0 0 4px rgba(0,0,0,.2);
}
.site_header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.site_logo img {
	max-width: 300px;
	width: 100%;
}
.header_account .dropdown-menu {
	min-width: 200px;
	padding-top: 0;
}
.account_user__info {
	text-align: center;
	background-color: #f5f5f5;
	padding: 10px;
	margin-bottom: 5px;
}
.account_user__info_img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	margin: 0 auto;
	overflow: hidden;
}
.account_user__info_img img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.account_user__info h4 {
	font-size: 1.2rem;
	margin-top: 5px;
}
.main_content__head h1 {
	font-size: 2rem;
}
.custom_table th {
  font-weight: 700;
  padding: 18px 16px;
  background: #fff;
  border-bottom: 1px solid #dee2e6;
  background-color: #dee2e6;
}

.custom_table td {
  padding: 28px 16px;
  vertical-align: middle;
  border-bottom: 1px solid #edf0f2;
  font-size: 18px;
}

.action_icons a {
  color: var(--secondaryColor);
  font-size: 22px;
  cursor: pointer;
  margin-right: 16px;
  transition: 0.2s;
}

.action_icons i:hover {
  color: #312e81;
}

.table-responsive {
  border-radius: 12px;
}
label.error{
	color: red;
}

.upload_doc__form label {
	font-weight: 600;
	margin-bottom: 10px;
}
.cus_file__upload {
	position: relative;
	border: 1px dashed var(--secondaryColor);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 50px 20px 15px 20px;
}
.cus_file__upload__content .upload_icon {
	font-size: 56px;
	color: var(--secondaryColor);
	margin-bottom: 15px;
}
.cus_file__upload_input {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 2;
}
.required_astrick {
	color: red;
}
.selected_files__item {
	display: flex;
	justify-content: space-between;
	padding: 10px 15px;
	border-top: 1px solid #ccc;
}
.selected_files__item_file {
	padding-right: 15px;
}
.selected_files__item_remove {
	cursor: pointer;
	color: var(--secondaryColor);
}
.upload_doc__form .form-control.h-150 {
	min-height: 150px;
	max-height: 150px;
	height: 150px;
	width: 100%;
}
@media(max-width:767px){
	.login_page__form {
		padding: 20px 15px;
	}
}