*, ::after, ::before {
	box-sizing: border-box;
}
body {
	font-family: "Montserrat", sans-serif;
	/*background-color: #DEECE7;*/
	margin: 0;
	padding: 20px;
	padding: 0;
}

/*.container {
	max-width: 800px;
	margin:100px auto;
	
}*/
.ph-success-message {
    margin-top: 20px;
    color: green;
    font-weight: 600;
    transition: opacity 0.5s ease;
}

.applicationForm-wapper {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	overflow: hidden;
}
#applicationForm form {
	position: relative;
}
#applicationForm .form-step {
	display: none;
}
#applicationForm .form-step.active {
	display: block;
}
#applicationForm .form_row {
	display: flex;
	flex-direction: row;
	gap: 15px;
}
#applicationForm .form_row .col_6 {
	max-width: 49%;
	width: 100%;
}
#applicationForm .form-group {
	margin-bottom: 20px;
}
#applicationForm label {
	font-weight: 600;
	display: block;
	margin-bottom: 10px;
	font-size: 18px;
	font-family: "Montserrat", sans-serif;
	color: #000000;
}
#applicationForm input, #applicationForm select, #applicationForm textarea {
	width: 100%;
	max-width: 100%;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #ccc;
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	color: #000;
	height: 50px;
}
input:focus, select:focus, textarea:focus {
	box-shadow: unset;
	outline: unset;
}
#applicationForm textarea {
	height: auto;
}
#applicationForm .buttons {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}
#applicationForm button {
	background-color: #2b7a78;
	color: #fff;
	padding: 12px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	font-family: "Montserrat", sans-serif;
	max-width: 220px;
	width: 100%;
}
#applicationForm button[type="submit"]{
	background-color: #A6518C;
}
#applicationForm button.next-btn {
	/*background-color: #9C4499;*/
	background-color: #A6518C;
}
#applicationForm button.prev-btn {
	background-color: #3a3a3a;
}
.form-progress-container {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-bottom: 30px;
	max-width: 100%;
	width: 100%;
}
.form-progress-container::before {
	content: "";
	background-color: #f6f6f6;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	height: 4px;
	width: 100%;
	z-index: 0;
}
.progress--card {
	background-color:#A6518C;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	height: 4px;
	width: 0%;
	z-index:0;
	transition: 0.4s ease;
}
.progress--circle {
	background-color: #fff;
	color: #999;
	border-radius: 50%;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 3px solid #f6f6f6;
	transition: 0.4s ease;
	z-index: 1;
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 600;
}
.progress--circle.active {
	border-color:#A6518C;
	color: #A6518C;
}
#applicationForm .form-step[data-animation="fade"] {
	-webkit-animation: fadeInRight 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fadeInRight 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
#applicationForm .form-step[data-animation="fade"].active {
	-webkit-animation: fadeInLeft 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fadeInLeft 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.fadeInRight {
	-webkit-animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@-webkit-keyframes fadeInRight {
	0% {
		-webkit-transform: translateX(50px);
		transform: translateX(50px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
	}
}
@keyframes fadeInRight {
	0% {
		-webkit-transform: translateX(50px);
		transform: translateX(50px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
	}
}
.fadeInLeft {
	-webkit-animation: fade-in-left 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fade-in-left 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@-webkit-keyframes fadeInLeft {
	0% {
		-webkit-transform: translateX(-50px);
		transform: translateX(-50px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
	}
}
@keyframes fadeInLeft {
	0% {
		-webkit-transform: translateX(-50px);
		transform: translateX(-50px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
	}
}
.ph-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-popup {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    animation: popupScale 0.35s ease;
}

.ph-popup-check {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: #28a745;
    color: #fff;
    font-size: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-popup h2 {
    margin-bottom: 10px;
    color: #1e7e34;
}

.ph-popup p {
    font-size: 16px;
    color: #444;
}

.ph-popup-close {
    margin-top: 20px;
    padding: 10px 24px;
    background: #28a745;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

@keyframes popupScale {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media(max-width:600px){
	#applicationForm .form_row {
		flex-direction: column;
	}
	#applicationForm .form_row .col_6 {
		max-width: 100%;
	}
	#applicationForm .buttons {
		flex-direction: column-reverse;
		gap: 20px;
	}
	#applicationForm button { max-width:100%; }
}