body {
	margin: 0;
}

.page-content {
	width: 100%;
	margin: 0 auto;
	background-image: -moz-linear-gradient(136deg, rgb(224,195,252) 0%, rgb(142,197,252) 100%);
	background-image: -webkit-linear-gradient(136deg, rgb(224,195,252) 0%, rgb(142,197,252) 100%);
	background-image: -ms-linear-gradient(136deg, rgb(224,195,252) 0%, rgb(142,197,252) 100%);
	display: flex;
	justify-content: center;
	min-height: 100vh;
}

.required-mark{
	color: red;
}
.form-v2-content {
	background: #fff;
	width: 851px;
	border-radius: 15px;
	margin-top:150px;
	display: flex;
	margin-bottom: 150px;
	height: fit-content;
}

.form-v2-content .form-left {
	position: relative;
}

.form-v2-content .form-left img {
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
}

.form-v2-content .form-detail {
	padding: 15px 30px;
	width: 100%;
}

.form-v2-content .form-detail h2 {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	color: #333;
	font-size: 28px;
	margin-bottom: 15px;
}

.form-v2-content .form-row {
	width: 100%;
	margin-bottom: 15px;
}

.form-v2-content .form-detail label {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #666;
	display: block;
	margin-bottom: 8px;
}

.form-v2-content .form-detail input {
	padding: 10px;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	color: #333;
}

.form-v2-content .form-detail .input-text {
	margin-bottom: 15px;
}

.form-v2-content .form-detail .register {
	background: linear-gradient(45deg, rgb(201, 61, 118) 0%, rgb(141, 44, 139) 100%);
	border-radius: 6px;
	width: 140px;
	padding: 6px;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	color: #fff;
	cursor: pointer;
}

.form-v2-content .form-detail .register:hover {
	background: linear-gradient(45deg, rgb(201, 61, 118) 0%, rgb(141, 44, 139) 100%);
}

.form-v2-content .form-detail .form-row-last {
	margin-top: 10px;
}

input::-webkit-input-placeholder {
	color: #999;
	font-size: 12px;
}

input::-moz-placeholder {
	color: #999;
	font-size: 12px;
}

input:-ms-input-placeholder {
	color: #999;
	font-size: 12px;
}

input:-moz-placeholder {
	color: #999;
	font-size: 12px;
}

.img-fluid {
    max-width: 100%;
   	max-height: inherit !important;
}

.form-v2-content {
    width: 70%!important;
}
.heading-title {
	font-weight: bold;
}

ul.menu-list li a {
    font-size: 12px !important;
	font-weight: bold;
}
ul.menu-list li {
    /* background: -webkit-linear-gradient(136deg, rgb(224,195,252) 0%, rgb(142,197,252) 100%); */
    padding: 5px 8px;
    font-style: normal;
    /* font-size: 12px; */
    border-radius: 4px;
}

nav.navbar {
  position: fixed;
  z-index: 10;
  width: 98%;
  top: 1%;
  box-shadow: 0 2px 5px 2px rgba(0, 0, 0, .1);
  border-radius: 8px;
  background-color: #f8f9fa;
  width: 70%;
}


.navbar img {
  width: 120px;
}

.navbar .site-name {
  font-size: 24px;
  font-weight: 500;
  color: #333;
}

.navbar .menu-list {
  display: flex;
  list-style: none;
}

.navbar .menu-list li {
  margin-left: 20px;
}

.navbar .menu-list li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 400;
}

.navbar .menu-list li a:hover {
  color: #007bff;
}
.site-name {
  font-family: "Protest Guerrilla", sans-serif;
  font-weight: 400;
  font-style: italic;
}


.image-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.image-box {
	position: relative;
	width: 70px;
	height: 70px;
	padding: 5px;
	border: 2px solid #ddd;
	border-radius: 7px;
	cursor: pointer;
	transition: border 0.3s ease;
}

.image-box img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.image-box .checkmark {
	position: absolute;
	top: 5px;
	right: 5px;
	width: 20px;
	height: 20px;
	background-color: transparent;
	border: 2px solid #ddd;
	border-radius: 50%;
	display: none;
}

/* Styling for selected state */
.image-box.selected {
	border-color: #4CAF50;
}

.image-box.selected .checkmark {
	display: block;
	background-color: #4CAF50;
	border-color: #4CAF50;
}

/* Adding a checkmark inside the checkmark circle */
.checkmark:after {
	content: '\2714'; /* Unicode for checkmark */
	position: absolute;
	color: white!important;
	font-size: 12px;
    top: -1px;
    left: 1px;
}
p.app-name {
    margin: 10px 0px;
    color: black;
    font-size: 11px;
}


header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.step{
	display: flex;
    align-items: center;
    justify-content: space-between;
	width: -webkit-fill-available;
	margin-bottom: 0px;
	margin-left: -30px !important;
}
ul.step li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

p.step-count {
    font-size: 10px;
    height: 15px;
    width: 15px;
    background: #564a4a;
    text-align: center;
    border-radius: 50%;
    color: white;
	margin-bottom: 3px;
}

p.step-description {
    font-size: 11px;
    color: #4d4a4a;
}

.topbar.logo-area {
    border-bottom: 1px solid rgba(128, 128, 128, 0.356);
    padding-bottom: 5px;
    margin-bottom: 8px;
}

p.step-count.active {
    background: linear-gradient(45deg, rgb(201, 61, 118) 0%, rgb(141, 44, 139) 100%);
}

p.step-description.active {
    color: #9A258B;
}

/* Blockquote Styling */
blockquote {
	font-weight: 100; /* Light font weight */
	font-size: 2rem; /* Large font size */
	line-height: 1.4; /* Line height */
	position: relative; /* Relative positioning */
	margin: 0; /* Remove default margin */
	padding: 15px 20px; /* Padding inside blockquote */
	font-size: 13px; /* Font size */
}

/* Blockquote Quotes */
blockquote:before,
blockquote:after {
	position: absolute; /* Absolute positioning */
	color: #f1efe6; /* Light color */
	font-size: 2rem; /* Large font size */
	width: 2rem; /* Fixed width */
	height: 2rem; /* Fixed height */
	font-family: "Protest Guerrilla", sans-serif; /* Font family */
}

blockquote:before {
	content: '“'; /* Opening quote */
	left: -0.5rem; /* Position left */
	top: -0.5rem; /* Position top */
}

blockquote:after {
	content: '”'; /* Closing quote */
	right: -0.5rem; /* Position right */
	bottom: -0.5rem; /* Position bottom */
}

.form-group label {
    font-size: 12px !important;
}

button.backbutton.btn.btn-sm {
    padding: 6px 30px;
    background: #495057;
    margin-right: 8px;
    color: white;
    border-radius: 5px;
}
.simplified-text {
    line-height: normal;
    font-size: 12px;
	margin-left: 20px;
}
select.form-control {
    font-size: 12px;
}
textarea.form-control {
    width: 90%;
}
.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
	color: white!important;
	margin-left: 10px !important;
}
.error_text {
	color: red; /* Style for error message text */
	font-size: 12px !important;
}
.v-toast__item .v-toast__text {
    padding-top: 0px!important;
    padding-bottom: 0px!important;
}
p.image-heading {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0px;
}
.astorisk{
	color: red;
}
@media screen and (min-width: 526px) and (max-width: 768px) {
	/* Add your styles for screen widths between 526px and 768px here */
	.navbar img {
		width: 90px;
	}
	.navbar .site-name {
		font-size: 18px;
		font-weight: 500;
		color: #333;
	}
	p.step-description {
		font-size: 8px;
	}
	.form-left {
		display: none;
	}
	.form-v2-content {
		margin-top: 130px !important;
	}
	nav.navbar {
		width: 95%;
	}
	.form-v2-content {
		width: 95% !important;
	}	
}
@media screen and (min-width: 376px) and (max-width: 525px) {
	/* Add your styles for screen widths between 526px and 768px here */
	.navbar img {
        width: 70px;
    }

	.navbar .site-name {
		font-size: 12px;
	}
	p.step-description {
		font-size: 8px;
	}
	.form-left {
		display: none;
	}
	.form-v2-content {
		margin-top: 130px !important;
	}
	nav.navbar {
		width: 95%;
	}
	.form-v2-content {
		width: 95% !important;
	}	
	p.step-description {
        font-size: 6px;
    }
	p.step-count {
		font-size: 8px;
		height: 10px;
		width: 10px;
	}
	h3.heading-title {
		font-size: 18px;
	}
}
@media screen and (min-width: 1px) and (max-width: 375px) {
	/* Add your styles for screen widths between 526px and 768px here */
	.navbar img {
        width: 70px;
    }

	.navbar .site-name {
		font-size: 12px;
	}
	p.step-description {
		font-size: 8px;
	}
	.form-left {
		display: none;
	}
	.form-v2-content {
		margin-top: 110px !important;
	}
	nav.navbar {
		width: 95%;
	}
	.form-v2-content {
		width: 95% !important;
	}	
	p.step-description {
        font-size: 5px;
    }
	p.step-count {
		font-size: 8px;
		height: 10px;
		width: 10px;
	}
	.step {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: -webkit-fill-available;
		margin-bottom: 0px;
		margin-left: -48px;
	}
	h3.heading-title {
		font-size: 18px;
	}
	.simplified-text {
		line-height: 15px!important;
	}
}

@media screen and (max-width: 991px) {
	.form-v2-content {
		flex-direction: column;
	}
	.form-v2-content .form-left {
		width: 100%;
	}
	.form-v2-content .form-left img {
		width: 100%;
		border-bottom-left-radius: 0;
		border-top-right-radius: 15px;
	}
	.form-v2-content .form-detail {
		padding: 20px;
	}
}

@media screen and (max-width: 575px) {
	.form-v2-content .form-detail .form-row input {
		width: 85%;
	}
}
