/*
Theme Name:     Kadence Child
Theme URI:      https://www.kadencewp.com/
Description:    Child theme for the Kadence theme.
Author:         Local Dev
Template:       kadence
Version:        1.0.0
Text Domain:    kadence-child
*/

/* TD shared form presentation (registration/login/candidate application) */
.td-form-card {
    margin: 20px auto;
    padding: 22px;
    border: 1px solid #dcdcde;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.td-form-card--narrow {
    max-width: 760px;
}

.td-form-card--wide {
    max-width: 920px;
}

.td-form-card .td-notice {
    margin-bottom: 16px;
}

.td-form-card .td-form {
    margin: 0;
}

.td-form-card .td-form h3 {
    margin: 24px 0 12px;
}

.td-form-card .td-form h3:first-of-type {
    margin-top: 0;
}

.td-form-card .td-field {
    margin-bottom: 14px;
}

.td-form-card .td-field > label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #1d2327;
}

.td-form-card .td-field input[type="text"],
.td-form-card .td-field input[type="email"],
.td-form-card .td-field input[type="number"],
.td-form-card .td-field input[type="password"],
.td-form-card .td-field select,
.td-form-card .td-field textarea {
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid #8c8f94;
    border-radius: 6px;
    background: #fff;
}

.td-form-card .td-field textarea {
    min-height: 84px;
    resize: vertical;
}

.td-form-card .td-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.td-form-card .td-actions {
    margin-top: 18px;
    text-align: center;
}

.td-form-card .td-actions .button {
    min-width: 240px;
    min-height: 40px;
}

.td-form-card .td-actions--center {
    display: flex;
    justify-content: center;
}

.td-form-card .td-auth-links {
    margin-top: 10px;
    text-align: center;
}

.td-form-card .td-auth-links-sep {
    display: inline-block;
    margin: 0 8px;
}

@media (max-width: 680px) {
    .td-form-card {
        padding: 16px;
    }

    .td-form-card .td-grid {
        grid-template-columns: 1fr;
    }

    .td-form-card .td-actions .button {
        width: 100%;
        min-width: 0;
    }
}
