/*plan prices*/

.membership-container {
    max-width: 960px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
    font-family: 'Open Sans Condensed', sans-serif;
}

.membership-container h2 {
    color: #337ab7;
    margin-bottom: 20px;
    font-size: 36px;
}

.membership-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; 
}

.membership-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.card-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.card-header img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.card-header h3 {
    font-size: 24px;
    margin-top: 0;
    font-family: 'Open Sans Condensed', sans-serif;
}

.card-body {
    padding: 20px;
}

.card-body h4 {
    color: #333;
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 10px;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.benefits-list li {
    margin-bottom: 8px;
    color: #555;
    display: flex;
    align-items: center;
    line-height: 1.6;
}

.sub-text {
    color: #777;
    font-size: 15px;
    margin-left: 5px;
    display: block;
}

.sub{
    display: block;
    margin-left: 15px;
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
}

.billing-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid #eee;
}

.corporate .billing-option:first-child {
    border-top: none;
    background-color: #d9edf7;
    padding: 10px 0;
    border-radius: 4px;
    margin-bottom: 5px;
}

.best-deal{
    font-weight: bold;
    color: #18aa18;
}

.option-name {
    color: #333;
}

.option-price {
    font-weight: bold;
}


@media (max-width: 768px) {
    .membership-options {
        flex-direction: column;
        align-items: center;
    }

    .membership-card {
        width: 100%;
        max-width: 350px;
    }
}


/*form*/

.form-container {
    max-width: 960px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
    font-family: 'Open Sans Condensed', sans-serif; 
}
    
    

.form-container h1 {
    color: #4682B4;
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.form-group label {
    width: 200px;
    text-align: right;
    padding-right: 15px;
    line-height: 1.5;
}

.form-control {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box;
}

textarea.form-control {
    height: 100px;
}

.required {
    color: red;
    margin-right: 5px;
}

.radio-group {
    display: flex;
    flex-direction: column;
}

.radio-option {
    margin-bottom: 5px;
}

.captcha-container {
    display: flex;
    align-items: center;
}

.captcha-code {
    background-color: #e6f2ff;
    padding: 8px 15px;
    margin: 0 10px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    color: #4682B4;
}

.refresh-btn {
    background: none;
    border: none;
    color: #4682B4;
    cursor: pointer;
    padding: 0; /* Remove default button padding */
    margin-left: 5px; /* Add some spacing */
}

.refresh-btn svg {
    vertical-align: middle; /* Align icon with text if any */
}

.submit-btn {
    background-color: #4e5968;
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    margin: 20px auto;
    border-radius: 3px;
}

.submit-btn:hover {
    background-color: #3a424c;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    padding-left: 215px; /* Align with input if labels are wide */
    display: none;
}

@media (max-width: 768px) {
    .form-container {
        padding: 15px;
    }

    .form-container h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .form-group {
        flex-direction: column; 
        align-items: flex-start; 
    }

    .form-group label {
        width: 100%;
        text-align: left;
        padding-right: 0;
        margin-bottom: 5px;
    }

    input[type="text"],
    input[type="email"],
    textarea {
        width: 100%; 
    }

    .error {
        margin-left: 0; 
    }

    .captcha-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .submit-btn {
        width: 100%;
    }
}


@media (max-width: 480px) {
    .form-container {
        padding: 10px;
    }

    .form-container h2 {
        font-size: 24px;
    }

    .captcha {
        font-size: 14px;
        padding: 6px 10px;
    }

    .refresh-btn {
        font-size: 18px;
    }
}