@charset "utf-8";
/* CSS Document */
/** Base form structure **/
.form_placeholder {padding-bottom: 30px;}
.form_placeholder fieldset {
    border: none !important;
    padding: 0!important;
    margin: 0 !important;
}

.form_placeholder fieldset .mb-3 {
    margin: 4px auto;
	position: relative;
}

.form_placeholder .form-label {
    padding: 6px 0px;
    display: none;
    margin-left: 15px;
    color: #6c6c6c;
}

.form_placeholder .text-muted {
    position: absolute;
    top: 4px;
    left: 4px;
    color: transparent;
    font-size: 0;
    pointer-events: none;
}

.form_placeholder .text-muted::before {
    content: '*';
    color: #baf5f7;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
}

/** Inputs **/
.form_placeholder .form-control {
    width: 100%;
    min-height: 2rem;
    padding: 2px 15px;
    border: solid 1px #e5e6e8;
    font-size: 1em;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    border-radius: 4px;
    background-color: #077a93;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
	box-sizing:border-box;
}

.form_placeholder .form-control:focus {
    outline: none;
    border-color: #0eb9bd;
    box-shadow: 0 0 4px rgba(14, 185, 189, 0.3);
}

.form_placeholder .form-control::placeholder {
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: inherit;
    opacity: 1;
}

/** Textarea **/
.form_placeholder textarea {
    resize: vertical;
}

/** Select dropdown **/
.form_placeholder .form-select {
    min-width: 100%;
    min-height: 2rem;
    padding: 6px 15px;
    border: 1px solid #e5e6e8;
    font-size: 1em;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    background-color: #077a93;
    border-radius: 4px;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg fill="%236c6c6c" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    cursor: pointer;
	box-sizing:border-box;
}

.form_placeholder .form-select:focus {
    outline: none;
    border-color: #0eb9bd;
    box-shadow: 0 0 4px rgba(14, 185, 189, 0.3);
}

/** Checkbox layout **/
.form_placeholder .form-check {
    width: 48%;
    margin: 6px 1% 6px 1%;
    display: inline-block;
    vertical-align: top;
}

.form_placeholder .form-check-input {
    margin-right: 8px;
    margin-top: 0.3rem;
}

.form_placeholder .form-check-label {
    font-size: 0.95em;
    color: #333;
}

/** Button Styling **/
.form_placeholder .form-actions {
    margin-top: 2rem;
}

.form_placeholder .form-actions button {
    min-height: 2rem;
    padding: 6px 25px;
    background: linear-gradient(to bottom, #000000 0%, #000000 100%);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.form_placeholder .form-actions button:hover {
    background-color: #333;
    transform: scale(1.02);
}

.alert-success {padding:10px;background-color:#ff2126;color:#fff;box-sizing: border-box;}

/** Responsive Tweaks **/
@media only screen and (max-width: 768px) {
    .form_placeholder .form-control,
    .form_placeholder .form-select,
    .form_placeholder textarea {
        min-width: 320px;
        width: 100%;
    }

    .form_placeholder .form-check {
        width: 100%;
        margin: 6px 0;
    }
}

/** Specific fix for telephone input (optional) **/
.form_placeholder .ccm-input-tel::placeholder {
    content: 'Phone';
}

	
/*label[for="akID[54][atSelectOptionValue]"], label[for="akID[55][atSelectOptionValue]"], label[for="akID[50][atSelectOptionValue]"] {display:block !important;}*/