@charset "utf-8";
/* CSS Document */

/**form placeholder**/


	.form_placeholder .form-label {padding:6px 0px;display:none;margin-left:15px;color:#6c6c6c;}
	.form_placeholder .text-muted {width:0px;position: absolute !important;top:0px;left:5px;}
	.form_placeholder .text-muted::before {width:0px;content:'*';}

/* General Form Styling */
.form_placeholder {
    max-width: 1200px;
    margin: auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.form_placeholder fieldset {
	max-width: 1200px;
    padding: 20px;
    margin: 0 !important;
    border: solid 1px #e5e6e8;
    border-radius: 8px;
    background: #f8f9fb;
}

/* Input Field Styling */
.form_placeholder .mb-3 {
    margin: 10px 0;
    position: relative;
}

.form_placeholder .form-control {
    width: 100%;
    min-height: 2.5rem;
    padding: 10px 15px;
    border: solid 1px #d1d1d1;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    font-size: 1em;
	color: #000000;
	box-sizing: border-box;
}

.form_placeholder .form-control:focus {
    border-color: #0073e6;
    box-shadow: 0px 0px 5px rgba(0, 115, 230, 0.2);
}

/* Placeholder Styling */
.form_placeholder .form-control::placeholder {
    color:#3c3c3c;
    font-size: 1em;
	opacity: 1;
}

/* Textarea Styling */
.form_placeholder textarea {
    min-width: 100%;
    resize: none;
}

/* Submit Button Styling */
.form_placeholder .form-actions {
    text-align: center;
    margin-top: 15px;
}

.form_placeholder .form-actions button {
    min-height: 2.5rem;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    color: #ffffff;
    background-color: #102558;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
	position: relative;
	z-index:100;
	overflow: hidden;
}

.form_placeholder .form-actions button:hover {
    color:#ffffff;
	background: transparent;
	border:none;
}
.form_placeholder .form-actions button::before {
	width: 100%;
	height: 100%;
	content: "";
	background: #3f3f3f;
	position: absolute;
	top: 0;
	left: -100%;
	z-index: -1;
	transition: left 0.4s ease-in-out;
}
.form_placeholder .form-actions button:hover::before {left: 0;}

/* Captcha Section */
.form_placeholder .captcha {
    text-align: center;
    margin-top: 15px;
}

.form_placeholder .captcha img {
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.form_placeholder .captcha img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .form_placeholder {
        width: 90%;
    }

    .form_placeholder textarea {
        min-width: 100%;
    }
}
