.form-section-container {
	width: 100%;
	padding: 4rem 2rem;

	display: flex;
	justify-content: center;
	align-items: center;
} 

.form-container {
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 2rem;

	width: 100%;
	max-width: 32rem;
	border-radius: 1.5rem;
	padding: 2.75rem;
	background: #fff;
	
	box-shadow: 0 8px 16px -8px #042b721f,0 4px 8px -4px #042b721f,0 2px 4px -2px #042b721f,0 1px 2px #042b721f,0 0 0 1px #042b721a,0 14px 28px #dfe7f5;
}

.form-title {
	text-align: center;
	font-weight: 600;
	font-size: 30px;
}

.form-fields {
	width: 100%;

	display: flex;
	flex-flow: column;
	gap: 1rem;
}

.input-container {
	display: flex;
	flex-flow: column;
	gap: .5rem;
}

.input-label {
	font-size: 16px;
}

.req:after {
	content: "*";
}

.form-input {
	font-size: 18px;
}

.form-button {
	border: none;
	background: #166EE8;
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	padding: .5rem 1rem;
	border-radius: 32px;
}

.form-button:hover {
	cursor: pointer;
	background: #125bc2;
}

.form-fields textarea {
	height: auto !important;
}


 /* Full-Screen Modal */
        .modal {
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100vw;
            min-height: 100vh;
            background: #dcd5fb;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            overflow: hidden;
        }

        .modal .textimage-hero-container{
            min-height:100%;
        }

        .modal-content {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            width: 400px;
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
            animation: fadeIn 0.3s ease-in-out;
        }

        .modal-content h2 {
            color: #d32f2f;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .modal-content p {
            font-size: 16px;
            color: #444;
            margin-bottom: 15px;
        }

        /* Retry Button */
        .retry-btn {
            background: #d32f2f;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .retry-btn:hover {
            background: #b71c1c;
        }

        /* Fade In Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

   img#cph-img{
	max-width: 50%;
   }