#offre-detail {
	.form-job {
		display: flex;
		justify-content: center;
		width: 100%;
	}
	.wpcf7-form {
		max-width: 900px;
		display: flex;
		flex-wrap: wrap;
		border-radius: 8px;
		border: 1px solid #f28f7a;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
		font-family: Arial, sans-serif;
		color: #12062c;
		margin: 2rem auto;
		padding: 1.5rem;
	}

	.form-group:nth-of-type(-n + 2) {
		width: 48%;
	}

	.form-group {
		width: 100%;
	}
	.form-group:first-of-type {
		margin-right: 4%;
	}
	.wpcf7-list-item {
		margin-left: 0;
	}
}
.form-group:has(.wpcf7-submit) {
	position: relative;
	display: inline-block;
	width: fit-content !important;
	overflow: hidden;
	p {
		margin: 0;
	}
	.wpcf7-submit {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		gap: 10px;
		border: none;
		color: #fff;
		font-size: 16px;
		font-weight: 700;
		padding: 18px 53px;
		line-height: 1;
		position: relative;
		overflow: hidden;
		cursor: pointer;
		z-index: 1;
		background-color: transparent;
		&:disabled {
			background-color: #ccc;
		}
	}
	&:hover::after {
		bottom: -30%;
	}
	&:hover::before {
		top: 100%;
	}
	&::before,
	&::after {
		content: "";
		position: absolute;
		width: 225%;
		height: 225%;
		left: 50%;
		transform: translateX(-50%);
		border-radius: 50%;
		transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
		z-index: 0;
	}

	&::before {
		top: -19%;
		background-color: #f28f7a;
	}

	&::after {
		bottom: 100%;
		background-color: #12062c;
	}
}
