.jc-sso-settings .wrap {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.jc-sso-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.jc-sso-header img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.jc-sso-settings h1 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
}

.jc-sso-settings h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Form Styles */
.form-table {
    width: 100%;
    border-collapse: collapse;
}

.form-table th,
.form-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.form-table th {
    width: 200px;
    text-align: left;
    font-weight: 600;
    color: #555;
}

.regular-text {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.large-text {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    min-height: 150px;
}

/* Button Styles */
.button-primary {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button-primary:hover {
    background-color: #005a87;
}

.button-secondary {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button-secondary:hover {
    background-color: #e0e0e0;
}


.login .jc-sso-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.login .jc-sso-separator::before,
.login .jc-sso-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dcdcde;
}

.login .jc-sso-separator span {
    padding: 0 10px;
    color: #777;
}

.login .jc-sso-button-container {
    margin-bottom: 16px;
    text-align: center;
}

/* SSO Button */
.login a.jc-sso-button {
    display: inline-flex;
    width: 100%;
    margin-top: 0;
    box-sizing: border-box;
}

a.jc-sso-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-top: 15px;
    background-color: #f6f7f7;
    border: 1px solid #00B368;
    color: #00B368;
    text-decoration: none;
    border-radius: 3px;
    font-size: 16px;
    gap: 10px;
}

a.jc-sso-button:hover {
    background-color: #00B368;
    border-color: #00FF00;
    color: #f0f0f1;
}

a.jc-sso-button img {
    width: 20px;
    height: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .wrap {
        padding: 15px;
    }

    .form-table th,
    .form-table td {
        padding: 10px;
    }

    .regular-text,
    .large-text {
        font-size: 13px;
    }
}