:root {
	--primary-blue: #0d2d45;
	--dark-pink: #ff6961;
	--light-pink: #fedcb8;

	--shadow-light: rgba(0, 0, 0, 0.08);
	--shadow-strong: rgba(0, 0, 0, 0.15);
	--background-light: #fdf8ef;
}
.login-card {
	margin: 50px auto;
	border-radius: 15px;
	background: white;
	padding: 30px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	max-width: 600px;
}

.signup-card {
	margin: 50px auto;
	border-radius: 15px;
	background: white;
	padding: 30px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	max-width: 65% !important;
}

.brand-logo {
	max-height: 40px;
	margin-bottom: 10px;
}

.btn-login-next {
	color: var(--primary-blue);
	border: 2px solid var(--primary-blue) !important;
	/* border-radius: 20%; */
}

.btn-login-next:hover {
	background-color: var(--primary-blue);
	color: white;
}

.footer-logo-in-login {
	width: 40px;
}

.email-wrapper {
	background-color: #fff;
	height: 45px;
}

.email-wrapper input:disabled {
	background-color: transparent;
}

#changeEmailBtn {
	color: var(--primary-blue) !important;
	text-decoration: none;
}
@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

#changeEmailBtn:hover {
	animation: blink 1s infinite;
}

.email-verified {
	background-color: var(--background-light) !important;
	color: #6c757d !important;
	font-weight: 500;

}

.upload-box {
	border: 2px dashed #c5d1e0;
	cursor: pointer;
	transition: background-ease 0.2s ease-in-out;

}

.upload-box:hover {
	background-color: #eef4ff;
	 transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.cursor-pointer {
	cursor: pointer;
}

.page-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.85);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.spinner-wrapper {
	text-align: center;
}

.spinner {
	width: 50px;
	height: 50px;
	border: 6px solid #e0e0e0;
	border-top-color: var(--dark-pink);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.alert-success {
	background-color: #e6f4ea;
	border-left: 5px solid #28a745;
	color: #2d4f2e;
	font-size: 0.95rem;
	padding: 0.75rem 1rem;
	border-radius: 4px;
}

/* Optional: Beautify the search inside the country dropdown */
.iti__country-list input[type="search"] {
	padding: 8px;
	font-size: 14px;
	border-radius: 4px;
	margin: 5px;
	width: calc(100% - 10px);
	border: 1px solid #ddd;
}

/*skills section started*/

.skill-levels {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
	padding: 10px 0;
	border-top: 2px solid var(--primary-blue);
	gap: 30px;
}

.skill-levels label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
}

.skill-levels input[type="radio"] {
	accent-color: #4285f4;
}
.skill-levels .master {
	color: green;
}
.skill-levels .intermediate {
	color: goldenrod;
}
.skill-levels .beginner {
	color: red;
}

/* 
#skillSuggestionsBox {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  z-index: 9999;
  width: 100%;
  max-width: 100%;
  margin-top: 5px;
}

.skill-suggestions .tag-item {
  background: #f0f0f0;
  padding: 6px 10px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  margin: 3px;
}

.skill-suggestions .tag-item:hover {
  background: #007bff;
  color: white;
}

.skill-levels span.master {
  color: green;
}

.skill-levels span.intermediate {
  color: orange;
}

.skill-levels span.beginner {
  color: red;
} */

.suggestion-box {
	position: absolute;
	background: white;
	border: 1px solid #ccc;
	z-index: 9999;
	width: 100%;
	padding: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	margin-top: 2px;
}

.skill-suggestions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.skill-suggestions .tag-item {
	background: var(--background-light);
	padding: 4px 10px;
	border-radius: 15px;
	cursor: pointer;
	font-size: 0.85rem;
	border: 1.5px solid var(--primary-blue);
}

.skill-suggestions .tag-item:hover {
	background-color: var(--dark-pink);
	color: #fff;
}

.tagify__tag.master-tag {
	background-color: #d4edda !important;
	color: #155724 !important;
	border: 1px solid #c3e6cb;
}

.tagify__tag.intermediate-tag {
	background-color: #fff3cd !important;
	color: #856404 !important;
	border: 1px solid #ffeeba;
}

.tagify__tag.beginner-tag {
	background-color: #f8d7da !important;
	color: #721c24 !important;
	border: 1px solid #f5c6cb;
}

.experience-block,
.education-block{
	border: 1px solid var(--primary-blue) !important;
}
#addEducationBtn,
#addExperienceBtn {
/* float: right; */
  margin-left: auto;
  margin-right: 10px;
}

.experience-section,
.educational-section
{
	background-color: var(--background-light);
	padding: 30px !important;
	margin-top: 60px;
	border-radius: 20px;
}
/* #clearExperienceFields,
#clearEducationFields {
	font-size: 15px;
	content: "Clear";
} */

/* Small devices (landscape phones, 576px and up) */
/* ✅ Mobile phones - reduce padding & adjust margins */
@media (max-width: 575px) {
	.login-card,
	.signup-card {
		padding: 15px !important;
		margin: 20px auto !important;
		max-width: 100% !important;
	}

	.login-card h2,
	.signup-card h2 {
		font-size: 1.2rem;
		text-align: center;
	}

	.btn-login-next {
		width: 100%;
		font-size: 14px;
	}
	.educational-section,
	.experience-section {
		/* padding-left: 0px !important;
		padding-right: 0px !important; */
		padding: 10px !important;
	}
	.education-duration,
	.experience-duration {
		flex-direction: column !important;
	}

	.education-duration select,
	.experience-duration select {
		width: 100% !important;
	}
	.autofill-section {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
}



/* 🎓 Education & Experience Blocks */
.education-block,
.experience-block {
  border: 2px solid var(--primary-blue);
  border-radius: 10px;
  background: #f9fbff;
  padding: 20px 18px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.education-block:hover,
.experience-block:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Delete icon positioning */
.education-block .delete-education,
.experience-block .delete-experience {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 1.2rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.education-block .delete-education:hover,
.experience-block .delete-experience:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* + Add More button */
.add-more-btn {
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.add-more-btn i {
  font-size: 1.2rem;
}

.add-more-btn:hover {
  background-color: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
  transform: scale(1.05);
}
