/* Job Seeker Registration - Unique Classes */

/* Password field styling */
.js-password-field-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.js-password-input {
    width: 100%;
    padding-right: 45px;
}

.js-password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    z-index: 2;
}

.js-password-label-hint {
    color: #999;
    font-weight: normal;
}

/* Password strength indicator */
.js-password-strength {
    margin-top: 8px;
    display: none;
}

.js-password-requirements {
    font-size: 12px;
    color: #666;
}

.js-password-requirements div {
    margin-bottom: 2px;
}

.js-safe-special-chars {
    margin-top: 8px;
    font-size: 11px;
    color: #888;
    background-color: #f8f9fa;
    padding: 6px;
    border-radius: 4px;
}

/* Terms container styling */
.js-terms-container {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    background-color: #f9f9f9;
    height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.6;
}

.js-terms-container ul {
    list-style: none;
    padding-left: 0;
    margin-left: 20px;
}

.js-terms-container ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
}

.js-terms-container ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--theme-color, #78EB54);
    font-weight: bold;
    font-size: 12px;
}

.js-terms-header {
    margin-bottom: 20px;
}

.js-terms-header h4 {
    margin-bottom: 10px;
    color: #333;
}

.js-terms-header p {
    margin-bottom: 5px;
}

.js-terms-intro {
    margin-top: 15px;
}

.js-terms-section {
    margin-bottom: 20px;
}

.js-terms-section h5 {
    color: #333;
    margin-bottom: 10px;
}

.js-terms-section p {
    margin-bottom: 10px;
}

.js-terms-section ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

.js-contact-info {
    margin-top: 10px;
}

.js-contact-info p {
    margin-bottom: 5px;
}

.js-terms-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    text-align: center;
}

.js-terms-footer em {
    font-style: italic;
}

.js-terms-checkbox-container {
    margin-top: 20px;
}

.js-terms-checkbox-disabled {
    opacity: 0.5;
}