/**
 * AI Tools Directory — Login Page Specific Styles
 *
 * @package AI_Tools_Directory
 */

/* Options row (remember me + forgot password) */
.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    user-select: none;
}

.auth-remember input {
    display: none;
}

.auth-remember-check {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-remember input:checked + .auth-remember-check {
    background: #10b981;
    border-color: #10b981;
}

.auth-remember input:checked + .auth-remember-check::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.auth-link {
    font-size: 13px;
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}

.auth-link:hover {
    color: #059669;
}
