/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 09 2026 | 05:21:59 */
/* =========================================
   MEMBERSHIP SECTION
========================================= */

.membership-section {
	margin: 0!important;
	 font-family: "Plus Jakarta Sans", Sans-serif !important;
}


/* =========================================
   TITLE
========================================= */

.membership-form h1 {
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-size: 40px;
    font-weight: 700;
	text-align: center;
	color: #489042;
}
.membership-form p {
	margin: 0 !important;
}

/* =========================================
   FORM GRID
========================================= */

.form-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;

}


/* =========================================
   FORM GROUP
========================================= */

.form-group {
    width: 100%;
    min-width: 0;
}


.form-group.full-width {
    grid-column: 1 / -1;
}


/* =========================================
   LABEL
========================================= */

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #616977;
    font-size: 14px;
    font-weight: 600;
	margin-top: 10px;
}

.form-group label span {
    color: #111111;
}


/* =========================================
   INPUT textarea select
========================================= */
.form-group input,
.form-group textarea,
.form-group select {
    color: #666;
    height: auto;
    border-width: 1px;
    border-style: solid;
    border-color: var(--ast-border-color);
    border-radius: 2px;
    background: #fafafa;
	border-radius: 5px;
	padding: 12px 16px !important;
}
.form-group textarea {
	height: 100px !important;
}


/* =========================================
   INPUT PLACEHOLDER
========================================= */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
    opacity: 1;
}


/* =========================================
   INPUT FOCUS
========================================= */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #111111;
    box-shadow:
        0 0 0 1px #111111;
}


/* =========================================
   SELECT
========================================= */
.membership-form .form-group br {
    display: none !important;
}

/* =========================================
   SUBMIT AREA
========================================= */

.submit-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* =========================================
   SUBMIT BUTTON
========================================= */

.submit-button {
    padding: 0;
    border: 0;
    background: #489042 !important;
    color: #111111;
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    line-height: 1.4;
    transition:
        opacity 0.2s ease;
}
.submit-button:hover {
	background: #20376B !important;
}


/* Tablet */
@media (max-width: 1024px) {
    .membership-form h1 {
        font-size: 35px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .membership-form h1 {
        font-size: 22px;
    }
}








